aboutsummaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-09-09 21:21:21 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-09-10 00:13:10 -0500
commit0a19e61d215f733be3141234958f14f046a73999 (patch)
treea66e0c8b258b1ef7fa6ae335a244a461ebefd900 /.travis
parent3ca143c45e41f4ef9f187688ef015151311921cd (diff)
downloadcryptography-0a19e61d215f733be3141234958f14f046a73999.tar.gz
cryptography-0a19e61d215f733be3141234958f14f046a73999.tar.bz2
cryptography-0a19e61d215f733be3141234958f14f046a73999.zip
install/upgrade pyenv in os x builders
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/install.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 8e791b37..929cf48b 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -5,6 +5,8 @@ set -x
if [[ "$(uname -s)" == 'Darwin' ]]; then
brew update || brew update
+ brew install pyenv
+ brew outdated pyenv || brew upgrade pyenv
if [[ "${OPENSSL}" != "0.9.8" ]]; then
brew outdated openssl || brew upgrade openssl
@@ -24,22 +26,18 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
python get-pip.py --user
;;
py33)
- brew outdated pyenv || brew upgrade pyenv
pyenv install 3.3.6
pyenv global 3.3.6
;;
py34)
- brew outdated pyenv || brew upgrade pyenv
pyenv install 3.4.2
pyenv global 3.4.2
;;
pypy)
- brew outdated pyenv || brew upgrade pyenv
pyenv install pypy-2.6.1
pyenv global pypy-2.6.1
;;
pypy3)
- brew outdated pyenv || brew upgrade pyenv
pyenv install pypy3-2.4.0
pyenv global pypy3-2.4.0
;;