Skip to content

Commit 0a668bb

Browse files
committed
Update Python version support
* Drop Python 3.9 * Add Python 3.14
1 parent 743be61 commit 0a668bb

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,13 @@ jobs:
4646
strategy:
4747
matrix:
4848
python-version:
49-
- "3.9"
5049
- "3.10"
50+
- "3.11"
5151
- "3.12"
5252
- "3.13"
53+
- "3.14"
5354
django-version:
54-
- "4.2" # LTS
55+
- "5.2" # LTS
5556
runs-on: ubuntu-latest
5657
steps:
5758
- uses: actions/checkout@v6
@@ -71,11 +72,11 @@ jobs:
7172
strategy:
7273
matrix:
7374
python-version:
74-
- "3.12"
75+
- "3.10"
7576
django-version:
7677
# LTS gets tested on all OS
78+
- "4.2"
7779
- "5.1"
78-
- "5.2"
7980
runs-on: ubuntu-latest
8081
steps:
8182
- 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)