diff --git a/.travis.yml b/.travis.yml index e6ae0db4..b0da764c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,9 @@ matrix: env: TOXENV=py35 - python: "3.6" env: TOXENV=py36 + - os: linux + python: 3.8 + env: TOXENV=py38 - os: linux dist: xenial python: 3.7 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5bb51160..66902a4a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -59,4 +59,4 @@ jobs: pip install -U tox displayName: 'Install dependencies' - script: tox -e py - displayName: 'Run Tox' \ No newline at end of file + displayName: 'Run Tox' diff --git a/setup.cfg b/setup.cfg index cc0025d9..5802826b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,6 +20,7 @@ classifier = Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 Topic :: Software Development :: Testing Topic :: Software Development :: Quality Assurance project_urls = diff --git a/tox.ini b/tox.ini index 3af11eee..d4cdf3a9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py37,py36,py35,py34,py27,pep8 +envlist = py38,py37,py36,py35,py34,py27,pep8 skipsdist = True [testenv]