Skip to content

Commit b7f73eb

Browse files
drop support for Python 3.9 (#313)
1 parent 01b7c8c commit b7f73eb

File tree

5 files changed

+22
-168
lines changed

5 files changed

+22
-168
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/
2222

2323
- Added support for Python 3.14
2424

25+
### Removed
26+
27+
- Dropped support for Python 3.9
28+
2529
## [5.2.2]
2630

2731
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ django_versions = [
6363
cog.outl(f"- Python {', '.join(PY_VERSIONS)}")
6464
cog.outl(f"- Django {', '.join(django_versions)}")
6565
]]] -->
66-
- Python 3.9, 3.10, 3.11, 3.12, 3.13, 3.14
66+
- Python 3.10, 3.11, 3.12, 3.13, 3.14
6767
- Django 4.2, 5.1, 5.2, 6.0
6868
<!-- [[[end]]] -->
6969

noxfile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@
1313
nox.options.default_venv_backend = "uv|virtualenv"
1414
nox.options.reuse_existing_virtualenvs = True
1515

16-
PY39 = "3.9"
1716
PY310 = "3.10"
1817
PY311 = "3.11"
1918
PY312 = "3.12"
2019
PY313 = "3.13"
2120
PY314 = "3.14"
22-
PY_VERSIONS = [PY39, PY310, PY311, PY312, PY313, PY314]
21+
PY_VERSIONS = [PY310, PY311, PY312, PY313, PY314]
2322
PY_DEFAULT = PY_VERSIONS[0]
2423
PY_LATEST = PY_VERSIONS[-1]
2524

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ authors = [
3131
#
3232
# cog.outl(f'requires-python = ">={PY_DEFAULT}"')
3333
# ]]] -->
34-
requires-python = ">=3.9"
34+
requires-python = ">=3.10"
3535
# [[[end]]]
3636
classifiers = [
3737
"Development Status :: 4 - Beta",
@@ -68,7 +68,6 @@ classifiers = [
6868
# for version in PY_VERSIONS:
6969
# cog.outl(f' "Programming Language :: Python :: {version}",')
7070
# ]]] -->
71-
"Programming Language :: Python :: 3.9",
7271
"Programming Language :: Python :: 3.10",
7372
"Programming Language :: Python :: 3.11",
7473
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)