Skip to content

Commit 2192a36

Browse files
committed
fix: Update CI matrix to use actual Django versions (4.2, 5.0, 5.1)
1 parent bb4f81a commit 2192a36

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ jobs:
1212
strategy:
1313
matrix:
1414
python-version: ["3.10", "3.11", "3.12", "3.13"]
15-
django-version: ["4.2", "5.2", "6.0"]
15+
django-version: ["4.2", "5.0", "5.1"]
1616
exclude:
17+
# Django 5.0+ requires Python 3.10+, but some features need 3.11+
1718
- python-version: "3.10"
18-
django-version: "5.2"
19-
- python-version: "3.10"
20-
django-version: "6.0"
19+
django-version: "5.1"
2120

2221
steps:
2322
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ classifiers = [
2828
"Environment :: Web Environment",
2929
"Framework :: Django",
3030
"Framework :: Django :: 4.2",
31-
"Framework :: Django :: 5.2",
31+
"Framework :: Django :: 5.0",
32+
"Framework :: Django :: 5.1",
3233
"Programming Language :: Python",
3334
"Programming Language :: Python :: 3",
3435
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)