From 536c2ecec7882472af8306d872a963f7d5275b27 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 13 Dec 2019 05:52:34 +0100 Subject: [PATCH 1/2] Travis CI: Upgrade to Python 3.8.0 Use the production version instead of the prerelease version. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b5f618bc..6f6c7571 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ dist: xenial language: python python: - "nightly" - - "3.8-dev" + - "3.8" - "3.7" - "3.6" - "3.5" @@ -11,7 +11,7 @@ matrix: fast_finish: true allow_failures: - python: "nightly" - - python: "3.8-dev" + - python: "3.8" install: - pip install --install-option='--no-cython-compile' Cython - pip install -r dev_requirements.txt From fc37f4f617becf0860093b9ed3bf8a4a7ceb0245 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 13 Dec 2019 17:03:51 +0100 Subject: [PATCH 2/2] Only "nightly" is allowed to fail. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6f6c7571..7cf179a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,6 @@ matrix: fast_finish: true allow_failures: - python: "nightly" - - python: "3.8" install: - pip install --install-option='--no-cython-compile' Cython - pip install -r dev_requirements.txt