Skip to content

Commit 39028cd

Browse files
committed
Support for Django 5.1
1 parent a8da753 commit 39028cd

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ jobs:
4444
django-version: 5.0
4545
- python-version: 3.9
4646
django-version: 5.0
47+
# Unsupported Python versions for Django 5.1
48+
- python-version: 3.8
49+
django-version: 5.1
50+
- python-version: 3.9
51+
django-version: 5.1
4752

4853
steps:
4954
- uses: actions/checkout@v3

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
py{38,39,310,311,312,py3}-dj{32,42}
4-
py{310,311,312,py3}-dj{50}
4+
py{310,311,312,py3}-dj{50,51}
55
py312-packaging
66

77
[gh-actions]
@@ -18,6 +18,7 @@ DJANGO =
1818
3.2: dj32
1919
4.2: dj42
2020
5.0: dj50
21+
5.1: dj51
2122
main: djmain
2223
packaging: packaging
2324

@@ -29,6 +30,7 @@ deps =
2930
dj32: Django~=3.2.0
3031
dj42: Django~=4.2.0
3132
dj50: Django~=5.0.0
33+
dj51: Django~=5.1.0
3234
commands =
3335
py{38,39,310,311,312}: coverage run tests/manage.py test testsuite {posargs: -v 2}
3436
py{38,39,310,311,312}: coverage report -m

0 commit comments

Comments
 (0)