From 81f327688811bd911731dd7a629dd132b02ac04d Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sat, 6 Jun 2015 22:18:22 -0500 Subject: install pypy 2.6.0 in container infra --- .travis/install.sh | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to '.travis/install.sh') diff --git a/.travis/install.sh b/.travis/install.sh index 9db27437..a046a5d8 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -51,6 +51,15 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then pyenv rehash python -m pip install --user virtualenv else + # temporary pyenv installation to get pypy-2.6 before container infra upgrade + if [[ "${TOXENV}" == "pypy" ]]; then + git clone https://github.com/yyuu/pyenv.git ~/.pyenv + PYENV_ROOT="$HOME/.pyenv" + PATH="$PYENV_ROOT/bin:$PATH" + eval "$(pyenv init -)" + pyenv install pypy-2.6.0 + pyenv global pypy-2.6.0 + fi pip install virtualenv fi -- cgit v1.2.3