Skip to content

Commit

Permalink
Upgrade pip _separately_
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Nov 11, 2019
1 parent 5f63c11 commit 4c7101e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -69,7 +69,7 @@ install:
script:
- python --version
- coverage run setup.py -q test
- python setup.py bdist_wheel
- python setup.py -q bdist_wheel

after_success:
- coveralls
Expand All @@ -78,7 +78,8 @@ after_success:
# macpython 3.5 doesn't support recent TLS protocols which causes twine
# upload to fail, so we use the system Python to run twine
/usr/bin/python -m ensurepip --user
/usr/bin/python -m pip install --user -U pip twine
/usr/bin/python -m pip install --user -U pip
/usr/bin/python -m pip install --user -U twine
/usr/bin/python -m twine check dist/*
if [[ $TRAVIS_TAG ]]; then
/usr/bin/python -m twine upload --skip-existing dist/*
Expand Down

0 comments on commit 4c7101e

Please sign in to comment.