mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
Add Python 3.10 for Django 3.2 and main test.
This commit is contained in:
parent
f888457546
commit
63b100c748
3 changed files with 11 additions and 3 deletions
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
|
|
@ -15,13 +15,18 @@ jobs:
|
||||||
include:
|
include:
|
||||||
- python-version: '3.8'
|
- python-version: '3.8'
|
||||||
django-version: 'qa'
|
django-version: 'qa'
|
||||||
# Django > 3.2 only supports >= Python 3.8
|
# Django >= 3.2 only supports >= Python 3.8
|
||||||
|
- python-version: '3.10'
|
||||||
|
django-version: '3.2'
|
||||||
- python-version: '3.8'
|
- python-version: '3.8'
|
||||||
django-version: 'main'
|
django-version: 'main'
|
||||||
experimental: true
|
experimental: true
|
||||||
- python-version: '3.9'
|
- python-version: '3.9'
|
||||||
django-version: 'main'
|
django-version: 'main'
|
||||||
experimental: true
|
experimental: true
|
||||||
|
- python-version: '3.10'
|
||||||
|
django-version: 'main'
|
||||||
|
experimental: true
|
||||||
- python-version: 'pypy3'
|
- python-version: 'pypy3'
|
||||||
django-version: 'main'
|
django-version: 'main'
|
||||||
experimental: true
|
experimental: true
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,9 @@ DJANGO_SETTINGS_MODULE = "tests.settings"
|
||||||
legacy_tox_ini = """
|
legacy_tox_ini = """
|
||||||
[tox]
|
[tox]
|
||||||
envlist =
|
envlist =
|
||||||
py{36,37,38,39,py3}-dj{22,31,32}
|
py{36,37,38,39,py3}-dj{22,31}
|
||||||
py{38,39}-djmain
|
py{36,37,38,39,310}-dj32
|
||||||
|
py{38,39,310}-djmain
|
||||||
py38-djqa
|
py38-djqa
|
||||||
|
|
||||||
[gh-actions]
|
[gh-actions]
|
||||||
|
|
@ -20,6 +21,7 @@ python =
|
||||||
3.7: py37
|
3.7: py37
|
||||||
3.8: py38
|
3.8: py38
|
||||||
3.9: py39
|
3.9: py39
|
||||||
|
3.10: py310
|
||||||
pypy3: pypy3
|
pypy3: pypy3
|
||||||
|
|
||||||
[gh-actions:env]
|
[gh-actions:env]
|
||||||
|
|
|
||||||
1
setup.py
1
setup.py
|
|
@ -57,6 +57,7 @@ setup(
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
"Programming Language :: Python :: 3.8",
|
"Programming Language :: Python :: 3.8",
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
|
"Programming Language :: Python :: 3.10",
|
||||||
"Programming Language :: Python :: Implementation :: CPython",
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
"Programming Language :: Python :: Implementation :: PyPy",
|
"Programming Language :: Python :: Implementation :: PyPy",
|
||||||
"Topic :: Internet :: Log Analysis",
|
"Topic :: Internet :: Log Analysis",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue