From 35870b16d02e99eddfec540394b713131b820598 2018-07-23 19:17:05 From: Matthias Bussonnier Date: 2018-07-23 19:17:05 Subject: [PATCH] Merge pull request #11238 from Carreau/backport-pip-upgrade Backport PR #11234: Upgrade pip before setuptools for Python compat. --- diff --git a/.travis.yml b/.travis.yml index 895d76e..a0ce9b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,8 @@ before_install: - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi' install: - - pip install "setuptools>=18.5" pip --upgrade + - pip install pip --upgrade + - pip install "setuptools>=18.5" # Installs PyPy (+ its Numpy). Based on @frol comment at: # https://github.com/travis-ci/travis-ci/issues/5027 - |