From f4e2e1e1de70a3c3a8153047d4c91e9249a7d047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Sun, 16 Sep 2018 12:29:02 +0200 Subject: Remove Travis CI testing for Python 3.7 Python 3.7 is not yet supported by Travis CI. See https://github.com/travis-ci/travis-ci/issues/9815 Also fixed a mistake in the test config. --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a3d5720..0df42d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,15 @@ cache: pip # Environment changes have to be manually synced with 'tox.ini'. # See: https://github.com/travis-ci/travis-ci/issues/3024 + +# Python 3.7 is not yet supported by Travis CI. +# See: https://github.com/travis-ci/travis-ci/issues/9815 + python: - 2.7 - 3.4 - 3.5 - 3.6 - - 3.7 - "pypy" install: @@ -16,7 +19,7 @@ install: - pipenv install --dev --ignore-pipfile script: - - pipenv run tox + - pipenv run py.test after_success: - pipenv run coveralls -- cgit v1.2.1