From 2d38a8605abaf7092bf81c9349931a0417d37324 Mon Sep 17 00:00:00 2001 From: Hiroshi Shirosaki Date: Fri, 15 Dec 2017 14:03:48 +0900 Subject: [PATCH] Install python on OSX on travis https://github.com/travis-ci/travis-ci/issues/2312 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ee404b6..18a3efa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,8 @@ before_script: | cd "$TRAVIS_BUILD_DIR" fi if [ "$TRAVIS_OS_NAME" = "osx" ]; then - export PATH=$PATH:~/Library/Python/2.7/bin + brew update + brew install python fi sudo -H pip install virtualenv -- 2.39.5