Skip to content

Commit

Permalink
List Python version on Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayP13 committed Nov 6, 2018
1 parent ed73d82 commit 010ce92
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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; }"
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = ('0', '1', '105')
__version_info__ = ('0', '1', '106')
__version__ = '.'.join(__version_info__)

0 comments on commit 010ce92

Please sign in to comment.