Use python3 instead of python in examples

This commit is contained in:
Joe Rickerby
2020-02-26 22:10:42 +00:00
parent 6ad0aebaf8
commit 4bc7e4f40d
7 changed files with 32 additions and 32 deletions
+3 -3
View File
@@ -23,12 +23,12 @@ env:
# Note: TWINE_PASSWORD is set to a PyPI API token in Travis settings
install:
- python -m pip install twine cibuildwheel==1.0.0
- python3 -m pip install twine cibuildwheel==1.1.0
script:
# build the wheels, put them into './wheelhouse'
- python -m cibuildwheel --output-dir wheelhouse
- python3 -m cibuildwheel --output-dir wheelhouse
after_success:
# if the release was tagged, upload them to PyPI
- if [[ $TRAVIS_TAG ]]; then python -m twine upload wheelhouse/*.whl; fi
- if [[ $TRAVIS_TAG ]]; then python3 -m twine upload wheelhouse/*.whl; fi