Merge branch 'master' into master

This commit is contained in:
Peter Bittner 2021-11-26 01:31:31 +01:00 committed by GitHub
commit 34a195cbab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View file

@ -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

View file

@ -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',
],

View file

@ -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