Python/Django compatibility updates (#8288)

* Update python and django versions in tox.ini

* Update  python requires in setup.py

* Update tox.ini

Co-authored-by: Tom Christie <tom@tomchristie.com>
This commit is contained in:
Paolo Melchiorre 2021-12-10 16:31:01 +01:00 committed by GitHub
parent 217b0bf3af
commit 773f479719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ setup(
packages=find_packages(exclude=['tests*']), packages=find_packages(exclude=['tests*']),
include_package_data=True, include_package_data=True,
install_requires=["django>=2.2", "pytz"], install_requires=["django>=2.2", "pytz"],
python_requires=">=3.5", python_requires=">=3.6",
zip_safe=False, zip_safe=False,
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', 'Development Status :: 5 - Production/Stable',

View File

@ -1,6 +1,6 @@
[tox] [tox]
envlist = envlist =
{py35,py36,py37}-django22, {py36,py37,py38,py39}-django22,
{py36,py37,py38,py39}-django31, {py36,py37,py38,py39}-django31,
{py36,py37,py38,py39,py310}-django32, {py36,py37,py38,py39,py310}-django32,
{py38,py39,py310}-{django40,djangomain}, {py38,py39,py310}-{django40,djangomain},