Skip to content

Commit f53381f

Browse files
committed
Update the CI jobs list
- Add the upcoming Django 3.2. - Django 4.0 (the master branch at the time of writing) has dropped support for Python 3.6 and 3.7.
1 parent 254ff24 commit f53381f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

tox.ini

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ envlist =
33
docs
44
style
55
readme
6-
py{36,37,38,39}-dj{22,30,31,master}-sqlite
7-
py{36,37,38,39}-dj{22,30,31}-{postgresql,mysql}
6+
py{36,37}-dj{22,30,31,32}-sqlite
7+
py{38,39}-dj{22,30,31,32,master}-sqlite
8+
py{36,37,38,39}-dj{22,30,31,32}-{postgresql,mysql}
89

910
[testenv]
1011
deps =
1112
dj22: Django==2.2.*
1213
dj30: Django==3.0.*
1314
dj31: Django==3.1.*
15+
dj32: Django>=3.2a1,<4.0
1416
sqlite: mock
1517
postgresql: psycopg2-binary
1618
mysql: mysqlclient
@@ -41,19 +43,19 @@ whitelist_externals = make
4143
pip_pre = True
4244
commands = make coverage TEST_ARGS='{posargs:tests}'
4345

44-
[testenv:py{36,37,38,39}-dj{22,30,31}-postgresql]
46+
[testenv:py{36,37,38,39}-dj{22,30,31,32}-postgresql]
4547
setenv =
4648
{[testenv]setenv}
4749
DB_BACKEND = postgresql
4850
DB_PORT = {env:DB_PORT:5432}
4951

50-
[testenv:py{36,37,38,39}-dj{22,30,31}-mysql]
52+
[testenv:py{36,37,38,39}-dj{22,30,31,32}-mysql]
5153
setenv =
5254
{[testenv]setenv}
5355
DB_BACKEND = mysql
5456
DB_PORT = {env:DB_PORT:3306}
5557

56-
[testenv:py{36,37,38,39}-dj{22,30,31,master}-sqlite]
58+
[testenv:py{36,37,38,39}-dj{22,30,31,32,master}-sqlite]
5759
setenv =
5860
{[testenv]setenv}
5961
DB_BACKEND = sqlite3

0 commit comments

Comments
 (0)