Skip to content
This repository was archived by the owner on Apr 23, 2024. It is now read-only.

Commit 0fd79d8

Browse files
author
Dmitry Yutkin
authored
Fix CI on MacOS (#62)
1 parent 02422a4 commit 0fd79d8

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,16 @@ jobs:
5353
- python3 get-pip.py
5454

5555
install:
56-
- pip install -U pip
57-
- pip install cibuildwheel==1.0.0 twine==1.15.0
58-
- pip install -r requirements.txt
56+
- python3 -m pip install -U pip
57+
- python3 -m pip install cibuildwheel==1.1.0 twine==1.15.0
58+
- python3 -m pip install -r requirements.txt
5959

6060
script:
6161
- cibuildwheel --output-dir wheelhouse
6262
- ls -l wheelhouse
63+
- python3 -m pip list
6364
- |
6465
if [[ $TRAVIS_TAG ]]; then
65-
rm -rf dist && python setup.py sdist
66+
rm -rf dist && python3 setup.py sdist
6667
twine upload -u __token__ -p $PYPI_TOKEN --skip-existing dist/*.tar.gz wheelhouse/*.whl
6768
fi

0 commit comments

Comments
 (0)