From 010ce9237dba9317b01cda473009ff6cefc0031a Mon Sep 17 00:00:00 2001 From: Ajay Patel Date: Tue, 6 Nov 2018 07:02:42 -0800 Subject: [PATCH] List Python version on Travis CI --- .travis.yml | 9 ++++++--- version.py | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 394159b..d9da5f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,9 +16,12 @@ matrix: - os: linux script: - - echo python --version - - echo python2 --version - - echo python3 --version + - python --version || true + - python2 --version || true + - python3 --version || true + - pip --version || true + - pip2 --version || true + - pip3 --version || true - $PIP install pip setuptools -U - $PIP install git+https://github.com/plasticity-admin/cibuildwheel.git@macos-ssl - eval "buildwheel() { cibuildwheel --output-dir wheelhouse >>buildwheel.log 2>&1; }" diff --git a/version.py b/version.py index ce2791f..b2bf5cc 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -__version_info__ = ('0', '1', '105') +__version_info__ = ('0', '1', '106') __version__ = '.'.join(__version_info__)