From f3f0e55ff0d209bcfcec5abdb2b2626404a0d9d0 Mon Sep 17 00:00:00 2001 From: Bob Ippolito Date: Mon, 22 Jan 2018 10:41:56 -0800 Subject: maybe get pypy builds working with pip --- .travis/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis/install.sh b/.travis/install.sh index 0b95980..c003979 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -10,6 +10,8 @@ if [[ -n "$PYENV_VERSION" ]]; then eval "$(pyenv init -)" pyenv install --list pyenv install -s "$PYENV_VERSION" - which pip || (curl -O https://bootstrap.pypa.io/get-pip.py && python get-pip.py) + pyenv rehash + which pip &> /dev/null || (curl -O https://bootstrap.pypa.io/get-pip.py && python get-pip.py) + pyenv rehash pip install wheel fi -- cgit v1.2.1