aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-x.travis/install.sh10
1 files changed, 5 insertions, 5 deletions
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"