Add python3.7 to tox and classifiers

This commit is contained in:
Alieh Rymašeŭski 2019-08-22 16:19:19 +03:00
parent b16b1a0df3
commit 2a43cff96f
2 changed files with 6 additions and 4 deletions

View file

@ -18,6 +18,7 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
],
)

View file

@ -1,9 +1,9 @@
[tox]
envlist =
{py35,py36}-django-111
{py35,py36}-django-20
{py35,py36}-django-21
{py35,py36}-django-22
{py35,py36,py37}-django-111
{py35,py36,py37}-django-20
{py35,py36,py37}-django-21
{py35,py36,py37}-django-22
[testenv]
setenv =
@ -16,5 +16,6 @@ deps =
django-22: Django>=2.2,<2.3
-r{toxinidir}/requirements-test.txt
basepython =
py37: python3.7
py36: python3.6
py35: python3.5