From ae1d8f7b90e096eb3190c8b9e7c44c5ac61a40f6 Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Sun, 8 Jul 2018 19:04:36 -0600 Subject: [PATCH 1/2] Drop python 3.3 and add 3.7 3.3.x has reached end of life --- .travis.yml | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 08d8dab50..90dcb8f08 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ env: # Release builds: - PYTHON_VERSION="2.7" BUILD_SHARED_LIBS="yes" - PYTHON_VERSION="2.7" WITH_MPFR="yes" INTEGER_CLASS="gmpxx" WITH_NUMPY="no" - - PYTHON_VERSION="3.3" WITH_MPC="yes" + - PYTHON_VERSION="3.7" WITH_MPC="yes" - PYTHON_VERSION="3.4" WITH_MPFR="yes" - PYTHON_VERSION="3.5" WITH_MPC="yes" - PYTHON_VERSION="3.6" WITH_MPC="yes" INTEGER_CLASS="flint" WITH_FLINT="yes" diff --git a/setup.py b/setup.py index 0092f754f..5f881dd1a 100644 --- a/setup.py +++ b/setup.py @@ -240,8 +240,9 @@ def finalize_options(self): 'Topic :: Scientific/Engineering :: Mathematics', 'Topic :: Scientific/Engineering :: Physics', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ] ) From 0c12ec82605f9d8c0e5edd46d26b5147544a7b9d Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Mon, 24 Dec 2018 19:14:34 -0600 Subject: [PATCH 2/2] Allow sage to fail --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 90dcb8f08..cb04c42a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -85,6 +85,8 @@ matrix: - env: BUILD_TYPE="Release" WITH_SAGE="yes" WITH_MPC="yes" PYTHON_VERSION="2.7" compiler: gcc os: linux + allow_failures: + - env: BUILD_TYPE="Release" WITH_SAGE="yes" WITH_MPC="yes" PYTHON_VERSION="2.7" before_install: - |