From 61ccda159d0a5af95c8b6a3e7cf01a1319dd0723 Mon Sep 17 00:00:00 2001 From: Fantix King Date: Thu, 3 Dec 2020 20:39:27 -0600 Subject: [PATCH 1/2] Revert "fix Travis macOS build (#325)" This reverts commit f17ab4329e43319eeaafc512f23910372eba2eef. --- .ci/travis-install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/.ci/travis-install.sh b/.ci/travis-install.sh index 626129a7..0938b591 100755 --- a/.ci/travis-install.sh +++ b/.ci/travis-install.sh @@ -3,9 +3,6 @@ set -e -x if [ "${TRAVIS_OS_NAME}" == "osx" ]; then - # Travis xcode7.3 image is still using deprecated homebrew/versions - # https://docs.brew.sh/Versions - brew untap homebrew/versions brew update >/dev/null brew upgrade pyenv eval "$(pyenv init -)" From 9affa81b2dd52beed8cab7e3fb42747081d5a3e1 Mon Sep 17 00:00:00 2001 From: Fantix King Date: Thu, 3 Dec 2020 22:45:38 -0600 Subject: [PATCH 2/2] Bump to xcode10.2 image * Also bump Python versions on macOS builds --- .travis.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 56a8d432..f4053172 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,25 +29,25 @@ matrix: include: - os: osx - osx_image: xcode7.3 + osx_image: xcode10.2 # Travis macOS env does not support Python yet, # so we have to set things up manually in install.sh. - env: BUILD=tests,wheels PYTHON_VERSION=3.5.5 + env: BUILD=tests,wheels PYTHON_VERSION=3.5.9 branches: {only: [releases]} - os: osx - osx_image: xcode7.3 - env: BUILD=tests,wheels PYTHON_VERSION=3.6.5 + osx_image: xcode10.2 + env: BUILD=tests,wheels PYTHON_VERSION=3.6.10 branches: {only: [releases]} - os: osx - osx_image: xcode7.3 - env: BUILD=tests,wheels PYTHON_VERSION=3.7.0 + osx_image: xcode10.2 + env: BUILD=tests,wheels PYTHON_VERSION=3.7.7 branches: {only: [releases]} - os: osx - osx_image: xcode7.3 - env: BUILD=tests,wheels PYTHON_VERSION=3.8.0 + osx_image: xcode10.2 + env: BUILD=tests,wheels PYTHON_VERSION=3.8.3 branches: {only: [releases]} - os: linux