mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-05-23 14:25:56 +00:00
Merge branch 'master' into master
This commit is contained in:
commit
34a195cbab
3 changed files with 6 additions and 4 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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -31,7 +31,6 @@ setup(
|
|||
'Environment :: Web Environment',
|
||||
'Framework :: Django',
|
||||
'Framework :: Django :: 2.2',
|
||||
'Framework :: Django :: 3.1',
|
||||
'Framework :: Django :: 3.2',
|
||||
'Framework :: Django :: 4.0',
|
||||
'Intended Audience :: Developers',
|
||||
|
|
@ -43,6 +42,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}
|
||||
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