1
1
[tox]
2
- envlist = py{37,38,39}-django22,py{37,38,39,310}-django{32,40,master},lint,docs,functional
2
+ envlist = py{37,38,39}-django22,py{37,38,39,310,311 }-django{32,40,41,42 ,master},lint,docs,functional
3
3
4
4
[testenv]
5
5
passenv = *
@@ -10,16 +10,19 @@ deps =
10
10
django22: django>=2.2,<2.3
11
11
django32: django>=3.2,<3.3
12
12
django40: django>=4.0,<4.1
13
+ django41: django>=4.1,<4.2
14
+ django42: django>=4.2,<4.3
13
15
djangomaster: https://github.com/django/django/archive/master.zip
14
16
commands = {posargs:coverage run runtests.py}
15
17
16
18
# Configure which test environments are run for each Github Actions Python version.
17
19
[gh-actions]
18
20
python =
19
21
3.7: py37-django{22,32},functional
20
- 3.8: py38-django{22,32,40},functional
21
- 3.9: py39-django{22,32,40},functional
22
- 3.10: py310-django{22,32,40},functional
22
+ 3.8: py38-django{22,32,40,41,42},functional
23
+ 3.9: py39-django{22,32,40,41,42},functional
24
+ 3.10: py310-django{22,32,40,41,42},functional
25
+ 3.11: py311-django{40,41,42},functional
23
26
24
27
[testenv:lint]
25
28
basepython = python
@@ -29,14 +32,14 @@ commands = prospector dbbackup -0
29
32
30
33
[testenv:docs]
31
34
basepython = python
32
- whitelist_externals =make
35
+ allowlist_externals =make
33
36
deps = -rrequirements/docs.txt
34
37
commands = make docs
35
38
36
39
[testenv:functional]
37
40
basepython = python
38
41
passenv = *
39
- whitelist_externals = bash
42
+ allowlist_externals = bash
40
43
deps =
41
44
-rrequirements/tests.txt
42
45
django
@@ -48,7 +51,7 @@ commands = {posargs:bash -x functional.sh}
48
51
[testenv:functional-mongodb]
49
52
basepython = python
50
53
passenv = *
51
- whitelist_externals = bash
54
+ allowlist_externals = bash
52
55
deps =
53
56
-rrequirements/tests.txt
54
57
djongo
0 commit comments