aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/install.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis/install.sh')
-rwxr-xr-x.travis/install.sh20
1 files changed, 10 insertions, 10 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 130d30f7..ecdecea4 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -26,20 +26,20 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
pyenv global 3.3.6
;;
py34)
- pyenv install 3.4.5
- pyenv global 3.4.5
+ pyenv install 3.4.6
+ pyenv global 3.4.6
;;
py35)
- pyenv install 3.5.2
- pyenv global 3.5.2
+ pyenv install 3.5.3
+ pyenv global 3.5.3
;;
py36)
- pyenv install 3.6.0
- pyenv global 3.6.0
+ pyenv install 3.6.1
+ pyenv global 3.6.1
;;
pypy*)
- pyenv install "pypy-$PYPY_VERSION"
- pyenv global "pypy-$PYPY_VERSION"
+ pyenv install "$PYPY_VERSION"
+ pyenv global "$PYPY_VERSION"
;;
pypy3)
pyenv install pypy3-2.4.0
@@ -62,8 +62,8 @@ else
PYENV_ROOT="$HOME/.pyenv"
PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
- pyenv install "pypy-$PYPY_VERSION"
- pyenv global "pypy-$PYPY_VERSION"
+ pyenv install "$PYPY_VERSION"
+ pyenv global "$PYPY_VERSION"
fi
# download, compile, and install if it's not already present via travis