diff --git a/.travis.yml b/.travis.yml index 2017e85..ef3bae4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,16 @@ language: python +# Existing Python versions python: - "2.7" + - "3.4" - "3.5" - "3.6" +# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs +matrix: + include: + - python: "3.7" + dist: xenial + sudo: required before_install: pip install pipenv install: pipenv install script: diff --git a/setup.py b/setup.py index f9e48bc..33af9f3 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ 'six' ], classifiers=( + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.4",