From b3bf838293db3ff8351be5b4f586572c0f18b100 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Mon, 12 Sep 2016 16:03:09 +0200 Subject: Update Python 3s & limit pyenv history cloned (#3145) --- .travis/install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.travis') diff --git a/.travis/install.sh b/.travis/install.sh index 5c09b258..f77fdda7 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -9,7 +9,7 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then brew outdated openssl || brew upgrade openssl # install pyenv - git clone https://github.com/yyuu/pyenv.git ~/.pyenv + git clone --depth 1 https://github.com/yyuu/pyenv.git ~/.pyenv PYENV_ROOT="$HOME/.pyenv" PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" @@ -24,12 +24,12 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then pyenv global 3.3.6 ;; py34) - pyenv install 3.4.4 - pyenv global 3.4.4 + pyenv install 3.4.5 + pyenv global 3.4.5 ;; py35) - pyenv install 3.5.1 - pyenv global 3.5.1 + pyenv install 3.5.2 + pyenv global 3.5.2 ;; pypy*) pyenv install "pypy-$PYPY_VERSION" -- cgit v1.2.3