Skip to content

Commit

Permalink
chore: add support for Django 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
henri-hulski committed Sep 19, 2022
1 parent 3569c1d commit c55bea2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ jobs:
python-version: "3.9"
- tox-env: "py310-dj40"
python-version: "3.10"
# Django 4.1
- tox-env: "py38-dj41"
python-version: "3.8"
- tox-env: "py39-dj41"
python-version: "3.9"
- tox-env: "py310-dj41"
python-version: "3.10"

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers =
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Topic :: Internet :: WWW/HTTP
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP :: WSGI
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37,38,39,310}-dj{22,30,31,32,40}
py{37,38,39,310}-dj{22,30,31,32,40,41}
package
lint

Expand All @@ -14,6 +14,7 @@ deps =
dj31: Django>=3.1, <3.2
dj32: Django>=3.2, <3.3
dj40: Django>=4.0, <4.1
dj41: Django>=4.1, <4.2
commands =
pytest --basetemp="{envtmpdir}" --junitxml="junit/TEST-{envname}.xml" {posargs}

Expand Down

0 comments on commit c55bea2

Please sign in to comment.