Skip to content

Commit

Permalink
travis: fix copy-pasta errors
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Apr 10, 2019
1 parent 5c17602 commit 0bcb983
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ after_success:
- codecov --env TRAVIS_OS_NAME MB_PYTHON_VERSION
- |
if [[ $TRAVIS_TAG ]]; then
$PYTHON -m pip install $PIP_INSTALL_OPTIONS twine
pip install --upgrade twine
if [[ $TRAVIS_OS_NAME == linux ]]; then
$PYTHON -m pip install $PIP_INSTALL_OPTIONS setuptools
$PYTHON setup.py sdist
$PYTHON -m twine upload dist/*.zip
pip install --upgrade setuptools setuptools_scm
python setup.py sdist
twine upload dist/*.zip
fi
$PYTHON -m twine upload wheelhouse/*.whl
twine upload wheelhouse/*.whl
fi

0 comments on commit 0bcb983

Please sign in to comment.