Skip to content

Commit 21c210b

Browse files
committed
Add more versions of Python and Django to test with Tox
1 parent 4795b28 commit 21c210b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/python-tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ['3.5', '3.10']
10+
python-version: ['3.5', '3.6', '3.8', '3.10']
1111

1212
steps:
1313
- uses: actions/checkout@v1

tox.ini

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
[tox]
22
envlist =
33
py35-{22}
4-
py310-{31,32,40}
4+
py36-{30,31,32}
5+
py38-{30,31,32,40}
6+
py310-{30,31,32,40}
57

68
[gh-actions]
79
python =
810
3.5: py35
11+
3.6: py36
12+
3.8: py38
913
3.10: py310
1014

1115
[testenv]
@@ -14,6 +18,7 @@ deps =
1418
selenium
1519
coverage
1620
22: Django >= 2.2, < 3.0
21+
30: Django >= 3.0, < 3.1
1722
31: Django >= 3.1, < 3.2
1823
32: Django >= 3.2, < 4.0
1924
40: Django >= 4.0, < 4.1

0 commit comments

Comments
 (0)