Skip to content

Commit c21d9e0

Browse files
committed
fix macOS deployment phase
1 parent eb0b33c commit c21d9e0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.travis.yml

+7-3
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)