mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
Added Python 3.10 support.
This commit is contained in:
parent
1923108e93
commit
dbd7414b33
3 changed files with 6 additions and 3 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -8,7 +8,7 @@ jobs:
|
|||
strategy:
|
||||
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']
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -43,6 +43,7 @@ setup(
|
|||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Topic :: Internet :: WWW/HTTP',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
],
|
||||
|
|
|
|||
6
tox.ini
6
tox.ini
|
|
@ -1,8 +1,9 @@
|
|||
[tox]
|
||||
envlist =
|
||||
# Python/Django combinations that are officially supported
|
||||
py{36,37,38,39}-django{22,31,32}
|
||||
py{38,39}-django{40}
|
||||
py{36,37,38,39}-django{22,31}
|
||||
py{36,37,38,39,310}-django{32}
|
||||
py{38,39,310}-django{40}
|
||||
py37-{flake8,bandit,readme,docs,isort}
|
||||
|
||||
[testenv]
|
||||
|
|
@ -25,6 +26,7 @@ python =
|
|||
3.7: py37
|
||||
3.8: py38
|
||||
3.9: py39
|
||||
3.10: py310
|
||||
|
||||
[testenv:py37-bandit]
|
||||
description = PyCQA security linter
|
||||
|
|
|
|||
Loading…
Reference in a new issue