From 48e05a184c8965acfd0dc9078969e60ba7e7d4fc Mon Sep 17 00:00:00 2001 From: Ajay Patel Date: Tue, 6 Nov 2018 07:34:21 -0800 Subject: [PATCH] Install a newer version of Python --- .travis.yml | 5 +++-- version.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d9da5f7..9c0e9aa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: python env: global: CIBW_BUILD_VERBOSITY: 3 - PIP: pip2 + PIP: pip3 language: generic @@ -16,6 +16,8 @@ matrix: - os: linux script: + - ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" + - brew install python - python --version || true - python2 --version || true - python3 --version || true @@ -29,6 +31,5 @@ script: - tail -c 3670016 buildwheel.log - ls wheelhouse - $PIP install awscli --upgrade - - /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" || true - brew install awscli || true - aws s3 sync ./wheelhouse/ s3://magnitude.plasticity.ai/wheelhouse/ diff --git a/version.py b/version.py index b2bf5cc..9a6f903 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -__version_info__ = ('0', '1', '106') +__version_info__ = ('0', '1', '107') __version__ = '.'.join(__version_info__)