Skip to content

Commit 48698c8

Browse files
committed
Update official version support
* Add Python 3.14 * Add Django 5.2 (LTS) * Add Django 6.0 * Drop Django 5.1 (EoL)
1 parent b887770 commit 48698c8

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,18 @@ jobs:
4141
- "3.11"
4242
- "3.12"
4343
- "3.13"
44+
- "3.14"
4445
django-version:
4546
- "4.2"
46-
- "5.1"
47+
- "5.2"
48+
- "6.0"
49+
exclude:
50+
- python-version: "3.14"
51+
django-version: "4.2"
52+
- python-version: "3.10"
53+
django-version: "6.0"
54+
- python-version: "3.11"
55+
django-version: "6.0"
4756
runs-on: ubuntu-latest
4857
steps:
4958
- uses: actions/checkout@v6

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@ classifiers = [
2424
"Programming Language :: Python :: 3.11",
2525
"Programming Language :: Python :: 3.12",
2626
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2728
"Framework :: Django",
2829
"Framework :: Django :: 4.2",
29-
"Framework :: Django :: 5.1",
30+
"Framework :: Django :: 5.2",
31+
"Framework :: Django :: 6.0",
3032
"Topic :: Software Development",
3133
]
3234
requires-python = ">=3.10"

0 commit comments

Comments
 (0)