Skip to content

Commit

Permalink
Fixes Travis builds by removing --allow-external.
Browse files Browse the repository at this point in the history
This should have no effect since --allow-external was made a no-op
in version 8 of pip:
https://media.readthedocs.org/pdf/pip/latest/pip.pdf
...and all of our builds use pip 9.0 or above.
  • Loading branch information
houglum committed Sep 7, 2018
1 parent bb38472 commit b1dc1b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ install:
# See https://github.com/aws/base64io-python/issues/4#issuecomment-397857642
- if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then pip install virtualenv==15.2.0; fi
- pip install tox
- pip install . --allow-external argparse
- pip install . argparse
script: tox -e $TOX_ENV
after_success:
- if [[ "${TOX_ENV}" == "py27-oauth2client4" ]]; then tox -e coveralls; fi

0 comments on commit b1dc1b9

Please sign in to comment.