Skip to content

Commit fdf3046

Browse files
authored
Add support for 3.14 and drop support for 3.9 (#200)
1 parent c1dd180 commit fdf3046

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-python@v4
1515
with:
16-
python-version: "3.13"
16+
python-version: "3.14"
1717
- run: python -m pip install flake8 flake8-quotes isort
1818
- run: flake8 .
1919

@@ -26,23 +26,16 @@ jobs:
2626
os:
2727
- "ubuntu-latest"
2828
python-version:
29-
- "3.9"
3029
- "3.10"
3130
- "3.11"
3231
- "3.12"
3332
- "3.13"
33+
- "3.14"
3434
django-version:
3535
- "4.2" # LTS
3636
- "5.0"
3737
- "5.1"
3838
- "5.2"
39-
exclude:
40-
- django-version: "5.0" # django 5.0 supports python >=3.10
41-
python-version: "3.9"
42-
- django-version: "5.1" # django 5.1 supports python >=3.10
43-
python-version: "3.9"
44-
- django-version: "5.2" # django 5.0 supports python >=3.10
45-
python-version: "3.9"
4639
steps:
4740
- uses: actions/checkout@v3
4841
- uses: actions/setup-python@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-python@v4
1414
with:
15-
python-version: "3.13"
15+
python-version: "3.14"
1616

1717
- name: Install dependencies
1818
run: python -m pip install --upgrade pip build

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ def rel(*xs):
4141
"Framework :: Django :: 5.0",
4242
"Framework :: Django :: 5.1",
4343
"Programming Language :: Python",
44-
"Programming Language :: Python :: 3.9",
4544
"Programming Language :: Python :: 3.10",
4645
"Programming Language :: Python :: 3.11",
4746
"Programming Language :: Python :: 3.12",
4847
"Programming Language :: Python :: 3.13",
48+
"Programming Language :: Python :: 3.14",
4949
],
5050
extras_require={
5151
"dev": [
@@ -58,6 +58,6 @@ def rel(*xs):
5858
"twine",
5959
],
6060
},
61-
python_requires=">=3.9",
61+
python_requires=">=3.10",
6262
include_package_data=True,
6363
)

0 commit comments

Comments
 (0)