From 4601bdde6d38c12151f1c0a424eddadc191b48ff Mon Sep 17 00:00:00 2001 From: Manuel Barkhau Date: Wed, 5 Sep 2018 22:05:11 +0200 Subject: [PATCH] travis experiment #13\n\nmaybe the xenial image also works on trusty --- .travis.yml | 2 -- travis_build_wheel.sh | 6 +----- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index bf91fae..5fba3c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ language: python cache: pip before_install: - - uname - sudo apt-get install -y git mercurial - sudo bash travis_build_wheel.sh @@ -12,7 +11,6 @@ script: - python --version - bash travis_run_tests.sh - matrix: include: - python: "3.6" diff --git a/travis_build_wheel.sh b/travis_build_wheel.sh index 1c70265..200f151 100644 --- a/travis_build_wheel.sh +++ b/travis_build_wheel.sh @@ -4,11 +4,7 @@ set -e if [[ $(which python3.6) ]]; then python3.6 --version else - if [[ $(uname) ]]; then - curl -sSf -o python-3.6.tar.bz2 https://s3.amazonaws.com/travis-python-archives/binaries/ubuntu/14.04/x86_64/python-3.6.tar.bz2 - else - curl -sSf -o python-3.6.tar.bz2 https://s3.amazonaws.com/travis-python-archives/binaries/ubuntu/14.04/x86_64/python-3.6.tar.bz2 - fi + curl -sSf -o python-3.6.tar.bz2 https://s3.amazonaws.com/travis-python-archives/binaries/ubuntu/16.04/x86_64/python-3.6.tar.bz2 tar xjf python-3.6.tar.bz2 --directory / source $HOME/virtualenv/python3.6.0/bin/activate fi