From 5a4b3e032c1b24c3432c6fedcb32145c7bd4d521 Mon Sep 17 00:00:00 2001 From: cclauss Date: Fri, 12 Jul 2019 22:27:05 +0200 Subject: [PATCH] Travis CI: Drop EOL versions on Python and add 3.7 and 3.8-dev --- .travis.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 67a34a0..5f524e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,19 +1,17 @@ language: python +dist: xenial # required for Python >= 3.7 on Travis CI python: - "nightly" - - "3.7-dev" - - "3.6-dev" + - "3.8-dev" + - "3.7" - "3.6" - "3.5" - - "3.4" - - "3.3" - "2.7" matrix: fast_finish: true allow_failures: - python: "nightly" - - python: "3.7-dev" - - python: "3.6-dev" + - python: "3.8-dev" install: - pip install --install-option='--no-cython-compile' Cython - pip install -r dev_requirements.txt