summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Shapiro <jesse@jesseshapiro.net>2017-12-11 12:10:08 -0500
committerGitHub <noreply@github.com>2017-12-11 12:10:08 -0500
commitbeba72a27f9cb6073197bc1aa0c74b5a6cd1c1fb (patch)
tree1d6538a40fb3d9827ce83c692a827830beb2a310
parente9aee8f7443f317a03014a4f6e66280a4339c52e (diff)
downloadurllib3-haikuginger-fix-travis-macos-2.7.tar.gz
Use pyenv to install all versions of Python for macOS; update Python3 versionshaikuginger-fix-travis-macos-2.7
-rwxr-xr-x_travis/install.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/_travis/install.sh b/_travis/install.sh
index 430dbeaa..8c341bf9 100755
--- a/_travis/install.sh
+++ b/_travis/install.sh
@@ -22,24 +22,24 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
pyenv global 2.6.9
;;
py27)
- curl -O https://bootstrap.pypa.io/get-pip.py
- python get-pip.py --user
+ pyenv install 2.7.14
+ pyenv global 2.7.14
;;
py33)
pyenv install 3.3.6
pyenv global 3.3.6
;;
py34)
- pyenv install 3.4.5
- pyenv global 3.4.5
+ pyenv install 3.4.7
+ pyenv global 3.4.7
;;
py35)
- pyenv install 3.5.2
- pyenv global 3.5.2
+ pyenv install 3.5.4
+ pyenv global 3.5.4
;;
py36)
- pyenv install 3.6.0
- pyenv global 3.6.0
+ pyenv install 3.6.3
+ pyenv global 3.6.3
;;
pypy*)
pyenv install "pypy-5.4.1"