Skip to content

Commit 0839747

Browse files
committed
Remove support for Python 3.9 (EOL)
1 parent 8bb9831 commit 0839747

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,12 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
python-version:
16-
- "3.9"
1716
- "3.10"
1817
- "3.11"
1918
- "3.12"
2019
tox-env:
2120
- "dj42" # LTS
2221
- "dj50"
23-
exclude:
24-
# Python 3.9 is incompatible with Django 5.0+
25-
- python-version: "3.9"
26-
tox-env: "dj50"
2722

2823
env:
2924
TOXENV: ${{ matrix.tox-env }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ repos:
33
rev: v3.21.0
44
hooks:
55
- id: pyupgrade
6-
args: ["--py39-plus"]
6+
args: ["--py310-plus"]

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
"Operating System :: OS Independent",
2020
"Programming Language :: Python",
2121
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)