Skip to content

Commit

Permalink
Merge pull request #710 from tomato42/py26-pip-intall
Browse files Browse the repository at this point in the history
fix pip installation on py2.6
  • Loading branch information
tomato42 committed Oct 14, 2020
2 parents 666221e + 5d76c20 commit 7676819
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,10 @@ before_install:

install:
- pip list
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then
curl -o get-pip.py https://bootstrap.pypa.io/2.6/get-pip.py;
python get-pip.py;
fi
- if [[ -e build-requirements-${TRAVIS_PYTHON_VERSION}.txt ]]; then travis_retry pip install -r build-requirements-${TRAVIS_PYTHON_VERSION}.txt; else travis_retry pip install -r build-requirements.txt; fi
- |
if [[ $EXTRACT_DEP == 'true' ]]; then
Expand Down

0 comments on commit 7676819

Please sign in to comment.