8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fa6173 commit 630df31Copy full SHA for 630df31
.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