Use Travis OSX's default pip
easy_install failing to download pip was a major source of flakiness for OSX builds.
This commit is contained in:
parent
8828f2ad82
commit
33dfd0a78f
|
@ -48,12 +48,11 @@ addons:
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi
|
||||||
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then sudo easy_install pip; fi
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# Install dependencies required on OSX
|
# Install dependencies required on OSX
|
||||||
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install ninja; fi
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install ninja; fi
|
||||||
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then pip install --user jinja2; fi
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then pip2 install --user jinja2; fi
|
||||||
|
|
||||||
script:
|
script:
|
||||||
# Use the more recent compilers we just installed
|
# Use the more recent compilers we just installed
|
||||||
|
|
Loading…
Reference in New Issue