summaryrefslogtreecommitdiff
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
parentb3b3f484061b3d41716602379d9d6311facafdd8 (diff)
downloadpysendfile-d93a64d9662579b77cdd500da356470b166bd3d8.tar.gz
fix travis
-rwxr-xr-x.ci/travis/install.sh27
-rw-r--r--.travis.yml16
2 files changed, 22 insertions, 21 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
diff --git a/.travis.yml b/.travis.yml
index 1006dd9..94d2d07 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,8 +1,6 @@
sudo: false
language: python
-os:
- - linux
- - osx
+cache: pip
matrix:
include:
- python: 2.6
@@ -11,15 +9,15 @@ matrix:
- python: 3.4
- python: 3.5
- python: nightly
- - language: generic
- os: osx
- env: PYVER=py26
+ # - language: generic
+ # os: osx
+ # env: PYVER=py26
- language: generic
os: osx
env: PYVER=py27
- - language: generic
- os: osx
- env: PYVER=py33
+ # - language: generic
+ # os: osx
+ # env: PYVER=py33
- language: generic
os: osx
env: PYVER=py34