Skip to content

Commit

Permalink
Add Django4.0 to tox.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
dekoza authored and Bogdanp committed Dec 20, 2021
1 parent ef70aba commit 5868f84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
/*.egg-info
/htmlcov
__pycache__
/.idea
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def rel(*xs):
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist=
py{37,38,39}-cpython-django{22,31,32}
py{37,38,39}-cpython-django{22,31,32,40}
flake8
migrations

Expand All @@ -12,7 +12,8 @@ deps=
flake8: flake8
django22: django>=2.2,<3
django31: django>=3.1,<3.2
django32: django>=3.2
django32: django>=3.2,<4.0
django40: django>=4.0,<4.1
commands=
py.test {posargs}
setenv=
Expand Down

0 comments on commit 5868f84

Please sign in to comment.