Skip to content

Commit b0667ba

Browse files
Drop support for python 3.8 and 3.9, they've been EOL for some time
1 parent 63f8765 commit b0667ba

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Python
2222
uses: actions/setup-python@v4
2323
with:
24-
python-version: "3.10"
24+
python-version: "3.13"
2525

2626
- name: Install dependencies
2727
run: |
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Python
4747
uses: actions/setup-python@v4
4848
with:
49-
python-version: "3.10"
49+
python-version: "3.13"
5050

5151
- name: Install dependencies
5252
run: |

.github/workflows/tests.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"]
16+
python_version: ["3.10", "3.11", "3.12", "3.13", "pypy-3.10"]
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v3
@@ -33,13 +33,7 @@ jobs:
3333
run: python -m pytest --cov-fail-under=90
3434

3535
- name: Verify dependencies
36-
# Jinja, https://data.safetycli.com/v/70612/97c
37-
# urllib3, https://data.safetycli.com/v/77744/97c, only when using python 3.8. Consider upgrading.
38-
# setuptools, https://data.safetycli.com/v/76752/97c, only when using python 3.8. Consider upgrading.
39-
# regex, https://data.safetycli.com/v/78558/97c, only when using python 3.8. Consider upgrading.
40-
# pip, https://data.safetycli.com/v/79883/97c, only when using python 3.8. Consider upgrading.
41-
# authlib, https://data.safetycli.com/v/79756/97c, only when using python 3.8. Consider upgrading.
42-
run: python -m safety check --ignore 70612 --ignore 77744 --ignore 77745 --ignore 76752 --ignore 78558 --ignore 79883 --ignore 79756
36+
run: python -m safety check
4337

4438
- name: Verify code style
4539
run: python -m flake8 -v

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ uv tool install tox --with tox-uv
1212
Install Python versions:
1313

1414
```bash
15-
uv python install 3.8 3.9 3.10 3.11 3.12
15+
uv python install 3.10 3.11 3.12 3.13
1616
```
1717

1818
To run tests for all Python versions:

0 commit comments

Comments
 (0)