From fdff446e92a1f65cff24be98cccd5de8f3d5d580 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 31 May 2017 14:21:53 +0200 Subject: [PATCH] Update pypy3 --- scripts/travis-install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/travis-install.sh b/scripts/travis-install.sh index abd47c3..28468aa 100644 --- a/scripts/travis-install.sh +++ b/scripts/travis-install.sh @@ -10,8 +10,9 @@ if [ "$TRAVIS_PYTHON_VERSION" = "pypy3" ]; then PYENV_ROOT="$HOME/.pyenv"; PATH="$PYENV_ROOT/bin:$PATH"; eval "$(pyenv init -)"; - pyenv install pypy3.3-5.5-alpha; - pyenv global pypy3.3-5.5-alpha; + pypyversion="pypy3.5-5.7-beta"; + pyenv install $pypyversion; + pyenv global $pypyversion; python --version; pip --version; fi