mirror of
https://github.com/jazzband/django-defender.git
synced 2026-03-16 22:10:32 +00:00
Confirm support for Python 3.10.
This commit is contained in:
parent
8a1deae9c3
commit
8733f58258
5 changed files with 6 additions and 3 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
-----
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -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",
|
||||
|
|
|
|||
3
tox.ini
3
tox.ini
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue