Confirm support for Python 3.10.

This commit is contained in:
Hasan Ramezani 2021-12-13 21:12:33 +01:00
parent 8a1deae9c3
commit 8733f58258
5 changed files with 6 additions and 3 deletions

View file

@ -9,7 +9,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9', 'pypy-3.8']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.8']
steps:
- uses: actions/checkout@v2

View file

@ -4,6 +4,7 @@ Changes
- Drop Django 3.1 support.
- Confirm support for Django 4.0
- Confirm support for Python 3.10
0.9.1
-----

View file

@ -108,7 +108,7 @@ Admin pages
Requirements
------------
* Python: 3.6, 3.7, 3.8, 3.9, PyPy
* Python: 3.6, 3.7, 3.8, 3.9, 3.10, PyPy
* Django: 2.2, 3.x, 4.x
* Redis

View file

@ -45,6 +45,7 @@ setup(
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",

View file

@ -2,7 +2,7 @@
envlist =
# list of supported Django/Python versions:
py{36,37,38,39,py3}-dj{22,32}
py{38,39}-dj{40,main}
py{38,39,310}-dj{40,main}
py38-{lint,docs}
[gh-actions]
@ -11,6 +11,7 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
pypy3: pypy3
[testenv]