Skip to content

Commit

Permalink
fix macOS deployment phase
Browse files Browse the repository at this point in the history
  • Loading branch information
skvark committed Apr 8, 2019
1 parent eb0b33c commit c21d9e0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -722,11 +722,15 @@ after_success: |
# Upload wheels to pypi if requested
if [ -n "$TRAVIS_TAG" ]; then
set -x
pip install --user twine
pip install --user --upgrade six
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
pip install --user twine
pip install --user --upgrade six
fi
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
pip install --user --upgrade pyOpenSSL
pip install twine
pip install --upgrade pyOpenSSL
fi
if [[ $ENABLE_CONTRIB == 0 ]]; then
Expand Down

0 comments on commit c21d9e0

Please sign in to comment.