aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-06-18 14:33:00 -1000
committerAlex Gaynor <alex.gaynor@gmail.com>2017-06-18 20:32:59 -0400
commite45151c2589ce7dea2987ee6f977092b84b7c803 (patch)
tree3e85296e2e03793465be9d7c0d14a6ac2e083357 /.travis
parent9e19428029f3bdbacb3d1807740217b78c230f33 (diff)
downloadcryptography-e45151c2589ce7dea2987ee6f977092b84b7c803.tar.gz
cryptography-e45151c2589ce7dea2987ee6f977092b84b7c803.tar.bz2
cryptography-e45151c2589ce7dea2987ee6f977092b84b7c803.zip
update pythons and pypy, a little prep for pypy3 in CI again (#3702)
* update pythons and pypy, a little prep for pypy3 in CI again * slightly renamed * oops * pypy renames all around
Diffstat (limited to '.travis')
-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