Added python 3.8 to tests.

This commit is contained in:
Fabio Caccamo 2019-11-05 16:11:26 +01:00
parent 8c06d1c769
commit ec62c947d5
3 changed files with 9 additions and 2 deletions

View File

@ -17,6 +17,12 @@ matrix:
dist: xenial dist: xenial
language: python language: python
sudo: required sudo: required
- python: "3.8"
env:
- TOX_ENV=py38
dist: xenial
language: python
sudo: required
install: install:
- pip install tox - pip install tox
script: script:

View File

@ -67,6 +67,7 @@ setup(
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Build Tools',
], ],
license=__license__, license=__license__,

View File

@ -1,7 +1,6 @@
[tox] [tox]
envlist = envlist =
py{27}, py{27,34,35,36,37,38},
py{34,35,36,37},
[testenv] [testenv]
basepython = basepython =
@ -10,6 +9,7 @@ basepython =
py35: python3.5 py35: python3.5
py36: python3.6 py36: python3.6
py37: python3.7 py37: python3.7
py38: python3.8
passenv = CI TRAVIS TRAVIS_* passenv = CI TRAVIS TRAVIS_*