Skip to content

Commit 6b462c8

Browse files
committed
Add Python 3.10 to the CI
1 parent f0232eb commit 6b462c8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
python-version:
17-
- 3.9
17+
- '3.9'
18+
- '3.10'
1819

1920
steps:
2021
- uses: actions/checkout@v2

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39}-dj{32,40,main}
3+
py{39,310}-dj{32,40,main}
44
style
55

66
[testenv]
@@ -11,7 +11,7 @@ commands =
1111
coverage report -m
1212
deps =
1313
dj32: Django>=3.2,<4.0
14-
dj40: Django>=4.0a1,<4.1
14+
dj40: Django>=4.0rc1,<4.1
1515
djmain: https://github.com/django/django/archive/main.tar.gz
1616

1717
[testenv:style]

0 commit comments

Comments
 (0)