From ec62c947d5a59d8f7bbd82a646cae1ce54ee4c31 Mon Sep 17 00:00:00 2001 From: Fabio Caccamo Date: Tue, 5 Nov 2019 16:11:26 +0100 Subject: [PATCH] Added python 3.8 to tests. --- .travis.yml | 6 ++++++ setup.py | 1 + tox.ini | 4 ++-- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 916f744..c5f8896 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,12 @@ matrix: dist: xenial language: python sudo: required + - python: "3.8" + env: + - TOX_ENV=py38 + dist: xenial + language: python + sudo: required install: - pip install tox script: diff --git a/setup.py b/setup.py index 818c905..275c0d2 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ setup( 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Software Development :: Build Tools', ], license=__license__, diff --git a/tox.ini b/tox.ini index 67fb81e..50f139e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,6 @@ [tox] envlist = - py{27}, - py{34,35,36,37}, + py{27,34,35,36,37,38}, [testenv] basepython = @@ -10,6 +9,7 @@ basepython = py35: python3.5 py36: python3.6 py37: python3.7 + py38: python3.8 passenv = CI TRAVIS TRAVIS_*