diff options
Diffstat (limited to '.travis/install.sh')
-rwxr-xr-x | .travis/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis/install.sh b/.travis/install.sh index 499233d7..f163f217 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -35,7 +35,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then pyenv install 3.5.1 pyenv global 3.5.1 ;; - pypy) + pypy*) pyenv install pypy-4.0.1 pyenv global pypy-4.0.1 ;; @@ -53,7 +53,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then else # temporary pyenv installation to get latest pypy before container infra upgrade # now using the -latest because of a segfault bug we're encountering in 2.6.1 - if [[ "${TOXENV}" == "pypy" ]]; then + if [[ "${TOXENV}" = pypy* ]]; then git clone https://github.com/yyuu/pyenv.git ~/.pyenv PYENV_ROOT="$HOME/.pyenv" PATH="$PYENV_ROOT/bin:$PATH" |