Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: add django 41 into tox #590

Merged
merged 1 commit into from
Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions requirements/test-django41.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
django>=4.1.2,<4.2
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ python =
DJANGO =
3.2: django32
4.0: django40
4.1: django41

[tox]
envlist =
py37-django{32}
py38-django{32,40}
py39-django{32,40}
py310-django{32,40}
py38-django{32,40,41}
py39-django{32,40,41}
py310-django{32,40,41}
pypy3-django{32}
flake8
apicheck
Expand All @@ -34,6 +35,7 @@ deps=

django32: -r{toxinidir}/requirements/test-django32.txt
django40: -r{toxinidir}/requirements/test-django40.txt
django41: -r{toxinidir}/requirements/test-django41.txt

linkcheck,apicheck: -r{toxinidir}/requirements/docs.txt
flake8,pydocstyle: -r{toxinidir}/requirements/pkgutils.txt
Expand Down