summaryrefslogtreecommitdiff
path: root/.ci/travis/install.sh
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2016-02-26 10:43:20 +0100
committerGiampaolo Rodola <g.rodola@gmail.com>2016-02-26 10:43:20 +0100
commitd93a64d9662579b77cdd500da356470b166bd3d8 (patch)
tree6a53529fdd4be7f78450231d20ceb5c25232cc21 /.ci/travis/install.sh
parentb3b3f484061b3d41716602379d9d6311facafdd8 (diff)
downloadpysendfile-d93a64d9662579b77cdd500da356470b166bd3d8.tar.gz
fix travis
Diffstat (limited to '.ci/travis/install.sh')
-rwxr-xr-x.ci/travis/install.sh27
1 files changed, 15 insertions, 12 deletions
diff --git a/.ci/travis/install.sh b/.ci/travis/install.sh
index 8f3ecc3..29d0f77 100755
--- a/.ci/travis/install.sh
+++ b/.ci/travis/install.sh
@@ -3,6 +3,9 @@
set -e
set -x
+uname -a
+python -c "import sys; print(sys.version)"
+
if [[ "$(uname -s)" == 'Darwin' ]]; then
brew update || brew update
brew outdated pyenv || brew upgrade pyenv
@@ -13,22 +16,22 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
fi
case "${PYVER}" in
- py26)
- pyenv install 2.6.9
- pyenv virtualenv 2.6.9 psutil
- ;;
+ # py26)
+ # pyenv install 2.6.9
+ # pyenv virtualenv 2.6.9 psutil
+ # ;;
py27)
pyenv install 2.7.10
pyenv virtualenv 2.7.10 psutil
;;
- py32)
- pyenv install 3.2.6
- pyenv virtualenv 3.2.6 psutil
- ;;
- py33)
- pyenv install 3.3.6
- pyenv virtualenv 3.3.6 psutil
- ;;
+ # py32)
+ # pyenv install 3.2.6
+ # pyenv virtualenv 3.2.6 psutil
+ # ;;
+ # py33)
+ # pyenv install 3.3.6
+ # pyenv virtualenv 3.3.6 psutil
+ # ;;
py34)
pyenv install 3.4.3
pyenv virtualenv 3.4.3 psutil