From 610f1e4832c63927d4fe1a4349e5b705696e4ed3 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Fri, 18 Jul 2014 13:49:33 -0500 Subject: update travis.yml to fix os x builders pyenv is now installed by default so we don't need to install it upgrade to python 3.4.1 why not --- .travis/install.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.travis/install.sh b/.travis/install.sh index 3582ea12..fafc4cad 100755 --- a/.travis/install.sh +++ b/.travis/install.sh @@ -33,8 +33,6 @@ if [[ "${TOX_ENV}" == "docs" ]]; then fi if [[ "$DARWIN" = true ]]; then - brew update - brew install pyenv if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi case "${TOX_ENV}" in py26) @@ -48,8 +46,8 @@ if [[ "$DARWIN" = true ]]; then sudo pip install virtualenv ;; pypy) - pyenv install pypy-2.3 - pyenv global pypy-2.3 + pyenv install pypy-2.3.1 + pyenv global pypy-2.3.1 pip install virtualenv ;; py32) @@ -63,8 +61,8 @@ if [[ "$DARWIN" = true ]]; then pip install virtualenv ;; py34) - pyenv install 3.4.0 - pyenv global 3.4.0 + pyenv install 3.4.1 + pyenv global 3.4.1 pip install virtualenv ;; docs) -- cgit v1.2.3