Skip to content

Commit 5086e0e

Browse files
committed
Update Python version support
* Drop Python 3.9 * Add Python 3.14
1 parent ae4f605 commit 5086e0e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646
strategy:
4747
matrix:
4848
python-version:
49-
- "3.9"
5049
- "3.10"
5150
- "3.12"
5251
- "3.13"
52+
- "3.14"
5353
django-version:
54-
- "4.2" # LTS
54+
- "5.2" # LTS
5555
runs-on: ubuntu-latest
5656
steps:
5757
- uses: actions/checkout@v6
@@ -71,11 +71,11 @@ jobs:
7171
strategy:
7272
matrix:
7373
python-version:
74-
- "3.12"
74+
- "3.10"
7575
django-version:
7676
# LTS gets tested on all OS
77+
- "4.2"
7778
- "5.1"
78-
- "5.2"
7979
runs-on: ubuntu-latest
8080
steps:
8181
- uses: actions/checkout@v6

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ classifiers = [
2323
"Topic :: Software Development",
2424
"Programming Language :: Python :: 3",
2525
"Programming Language :: Python :: 3 :: Only",
26-
"Programming Language :: Python :: 3.9",
2726
"Programming Language :: Python :: 3.10",
2827
"Programming Language :: Python :: 3.11",
2928
"Programming Language :: Python :: 3.12",
3029
"Programming Language :: Python :: 3.13",
30+
"Programming Language :: Python :: 3.14",
3131
"Framework :: Django",
3232
"Framework :: Django :: 4.2",
3333
"Framework :: Django :: 5.1",
3434
"Framework :: Django :: 5.2",
3535
]
36-
requires-python = ">=3.9"
36+
requires-python = ">=3.10"
3737
dependencies = ["django>=4.2.0", "pillow>=11.3.0"]
3838

3939
[project.optional-dependencies]

0 commit comments

Comments
 (0)