##// END OF EJS Templates
Backport PR #11477: pin pip on old python
Matthias Bussonnier -
Show More
@@ -13,6 +13,12 b' before_install:'
13 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
13 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
14 - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
14 - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
15 install:
15 install:
16 - |
17 if [[ "$TRAVIS_PYTHON_VERSION" == "3.3" ]]; then
18 pip install 'pip<18' --upgrade
19 else
20 pip install pip --upgrade
21 fi
16 - pip install pip --upgrade
22 - pip install pip --upgrade
17 - pip install "setuptools>=18.5"
23 - pip install "setuptools>=18.5"
18 # Installs PyPy (+ its Numpy). Based on @frol comment at:
24 # Installs PyPy (+ its Numpy). Based on @frol comment at:
General Comments 0
You need to be logged in to leave comments. Login now