From 04b41f03043744ed324bae17d1164952cccb28b7 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 9 Oct 2017 22:47:02 -0400 Subject: [PATCH] Upgrading to Xcode 9 & fix OSX/Py3 build failure * Upgrades to latest stable Xcode (9) * Fixes build error in the OS X/Python 3 build. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2853ac7ad..615b1f910 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,7 +67,7 @@ matrix: osx_image: xcode7.3 env: PYTHON=2.7 CPP=14 CLANG CMAKE=1 - os: osx - osx_image: xcode8.3 + osx_image: xcode9 env: PYTHON=3.6 CPP=14 CLANG DEBUG=1 # Test a PyPy 2.7 build - os: linux @@ -138,7 +138,7 @@ before_install: PY_CMD=python$PYTHON if [ "$TRAVIS_OS_NAME" = "osx" ]; then if [ "$PY" = "3" ]; then - brew install python$PY; + brew update && brew install python$PY; else curl -fsSL https://bootstrap.pypa.io/get-pip.py | $PY_CMD - --user fi