Skip to content

Commit

Permalink
Add support for Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Nov 23, 2021
1 parent 2666db1 commit 6793cd8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
django-version: ['2.2', '3.1', '3.2', 'main']

steps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Changes
- Drop surlex dependency improved `path()` and `re_path()` (#339).
- Drop support for Django 3.0
- Add support for Django 3.2
- ...
- Add support for Python 3.10

0.9.1 (18-05-2020)
------------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Utilities'
],
)
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[tox]
envlist =
py{36,37,38,39}-dj{22,31,32}
py{38,39}-djmain
py{36,37,38,39}-dj{22,31}
py{36,37,38,39}-dj32
py{38,39,310}-djmain

[testenv]
deps =
Expand Down Expand Up @@ -35,6 +36,7 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310

[gh-actions:env]
DJANGO =
Expand Down

0 comments on commit 6793cd8

Please sign in to comment.