Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c21d9e0

Browse filesBrowse files
committed
fix macOS deployment phase
1 parent eb0b33c commit c21d9e0
Copy full SHA for c21d9e0

File tree

1 file changed

+7
-3
lines changed
Filter options

1 file changed

+7
-3
lines changed

‎.travis.yml

Copy file name to clipboardExpand all lines: .travis.yml
+7-3Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -722,11 +722,15 @@ after_success: |
722722
# Upload wheels to pypi if requested
723723
if [ -n "$TRAVIS_TAG" ]; then
724724
set -x
725-
pip install --user twine
726-
pip install --user --upgrade six
725+
726+
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
727+
pip install --user twine
728+
pip install --user --upgrade six
729+
fi
727730
728731
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
729-
pip install --user --upgrade pyOpenSSL
732+
pip install twine
733+
pip install --upgrade pyOpenSSL
730734
fi
731735
732736
if [[ $ENABLE_CONTRIB == 0 ]]; then

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.