Travis: install pip manually on OSX
This commit is contained in:
parent
e3b1f51c04
commit
3cf6c9df0c
|
@ -42,11 +42,12 @@ 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 jinja2; fi
|
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then sudo python -m pip install 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