Skip to content

Commit ccf8122

Browse files
authored
[deps] Dropped support for Python 3.9
1 parent 42ea3e3 commit ccf8122

3 files changed

Lines changed: 2 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
python-version:
21-
- "3.9"
2221
- "3.10"
2322
- "3.11"
2423
- "3.12"
@@ -28,11 +27,6 @@ jobs:
2827
- django~=5.1.0
2928
- django~=5.2.0
3029
exclude:
31-
# Django 5.1+ requires Python >=3.10
32-
- python-version: "3.9"
33-
django-version: django~=5.1.0
34-
- python-version: "3.9"
35-
django-version: django~=5.2.0
3630
# Python 3.13 supported only in Django >=5.1.3
3731
- python-version: "3.13"
3832
django-version: django~=4.2.0

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ manipulate a flat JSON object made of simple keys and values**.
4646
Compatibility
4747
-------------
4848

49-
Tested on python >= 3.9 and Django 4.2, 5.1 and 5.2.
49+
Tested on python >= 3.10 and Django 4.2, 5.1 and 5.2.
5050

5151
It should work also on previous versions of Django.
5252

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
packages=find_packages(exclude=["tests*", "docs*"]),
1919
include_package_data=True,
2020
zip_safe=False,
21-
python_requires=">=3.9",
21+
python_requires=">=3.10",
2222
install_requires=[
2323
"django>=4.2,<5.3",
2424
],
@@ -44,7 +44,6 @@
4444
"Framework :: Django :: 5.1",
4545
"Framework :: Django :: 5.2",
4646
"Programming Language :: Python :: 3",
47-
"Programming Language :: Python :: 3.9",
4847
"Programming Language :: Python :: 3.10",
4948
"Programming Language :: Python :: 3.11",
5049
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)