Skip to content

Commit 15d604a

Browse files
authored
Add support for python 3.10 (#403)
* Add support for python 3.10 * Update tox.ini * Update test.yml
1 parent d7a49e1 commit 15d604a

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: true
1717
matrix:
1818
platform: [ubuntu-latest, macos-latest, windows-latest]
19-
python-version: [3.6, 3.7, 3.8, 3.9]
19+
python-version: [3.6, 3.7, 3.8, 3.9, '3.10.0-beta.1']
2020

2121
steps:
2222
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@
8686
"Programming Language :: Python :: 3.7",
8787
"Programming Language :: Python :: 3.8",
8888
"Programming Language :: Python :: 3.9",
89+
"Programming Language :: Python :: 3.10",
8990
"Framework :: Django :: 1.11",
9091
"Framework :: Django :: 2.0",
9192
"Framework :: Django :: 2.1",

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ envlist =
99
py37-django{11,20,21,22,30,31,32,main}-{linux,macos,windows}
1010
py38-django{11,20,21,22,30,31,32,main}-{linux,macos,windows}
1111
py39-django{11,20,21,22,30,31,32,main}-{linux,macos,windows}
12+
py310-django{11,20,21,22,30,31,32,main}-{linux,macos,windows}
1213
skip_missing_interpreters = true
1314

1415
[gh-actions]
@@ -18,6 +19,7 @@ python =
1819
3.7: py37
1920
3.8: py38
2021
3.9: py39
22+
3.10: py310
2123

2224
[gh-actions:env]
2325
PLATFORM =

0 commit comments

Comments
 (0)