Skip to content

Commit f790e45

Browse files
committed
Remove support for Python 3.9 (EOL)
1 parent c7380bb commit f790e45

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
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"]

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Automated code metrics:
2626

2727
* Free software: MIT license
2828
* Documentation for the Click command line library: https://click.palletsprojects.com/en/stable/
29-
* Compatible with Django 4.2 and 5.0 running on Python 3.9, 3.10, 3.11, and 3.12 (note: 3.10+ required for Django 5.0).
29+
* Compatible with Django 4.2 and 5.0 running on Python 3.10, 3.11, and 3.12 (note: 3.10+ required for Django 5.0).
3030

3131

3232
Installation

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)