diff options
author | Jack Lloyd <[email protected]> | 2016-12-04 17:29:25 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-12-04 17:29:25 -0500 |
commit | b5b928f28c48d545282fe5b3367fcb6d30c5e323 (patch) | |
tree | 69e76752b18ea7641a85c2ce50169e7500621fae | |
parent | b89e7a2d5315ac3df90e40d06868d5a9ce671afc (diff) |
Skip trying to install Python2 on OS X Travis images
-rwxr-xr-x | src/scripts/ci/travis/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci/travis/install.sh b/src/scripts/ci/travis/install.sh index c3e4ee834..9cbd65c83 100755 --- a/src/scripts/ci/travis/install.sh +++ b/src/scripts/ci/travis/install.sh @@ -76,7 +76,7 @@ if [ "$TRAVIS_OS_NAME" = "osx" ]; then if [ "$BUILD_MODE" != "cross-arm32" ] && [ "$BUILD_MODE" != "cross-arm64" ]; then brew install xz - brew install python # python2 + # Python2 is already installed brew install python3 # Boost 1.58 is installed on Travis OS X images |