Use pip2 explicitly to install dependencies on TravisCI
Apparently, some change in Homebrew caused pip to go missing on macOS, so use pip2 to fix that
This commit is contained in:
parent
07409dea59
commit
17dfa2dd48
1 changed files with 2 additions and 2 deletions
|
|
@ -20,8 +20,8 @@ addons:
|
|||
- libboost-dev
|
||||
before_script: |
|
||||
echo TRAVIS_OS_NAME: $TRAVIS_OS_NAME
|
||||
pip install --user --install-option="--no-cython-compile" cython
|
||||
pip install --user 3to2
|
||||
pip2 install --user --install-option="--no-cython-compile" cython
|
||||
pip2 install --user 3to2
|
||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||
brew update
|
||||
brew install scons
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue