Support python 3.8

This commit is contained in:
Alieh Rymašeŭski 2020-06-10 14:08:05 +03:00
parent 0f3c7b430f
commit 33c35b42db
2 changed files with 6 additions and 4 deletions

View file

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

View file

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