We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb0b33c commit c21d9e0Copy full SHA for c21d9e0
.travis.yml
@@ -722,11 +722,15 @@ after_success: |
722
# Upload wheels to pypi if requested
723
if [ -n "$TRAVIS_TAG" ]; then
724
set -x
725
- pip install --user twine
726
- pip install --user --upgrade six
+
+ if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
727
+ pip install --user twine
728
+ pip install --user --upgrade six
729
+ fi
730
731
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
- pip install --user --upgrade pyOpenSSL
732
+ pip install twine
733
+ pip install --upgrade pyOpenSSL
734
fi
735
736
if [[ $ENABLE_CONTRIB == 0 ]]; then
0 commit comments