Skip to content

Commit

Permalink
Fix travis pip version for python 3.3 (#6558)
Browse files Browse the repository at this point in the history
  • Loading branch information
vthaian committed Nov 9, 2018
1 parent 4ef108d commit a017ea0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -66,7 +66,8 @@ before_script:

before_install:
- "export TRAVIS_COMMIT_MSG=\"$(git log --format=%B --no-merges -n 1)\""
- pip install -U pip>=8.0
- if [ "$TRAVIS_PYTHON_VERSION" <= 3.3 ]; then pip install -U pip==7.1.2; fi
- if [ "$TRAVIS_PYTHON_VERSION" >= 3.4 ]; then pip install -U pip>=8.0; fi
- echo "$TRAVIS_COMMIT_MSG" | grep '\[skip saucelabs\]'; export USE_SAUCE_LABS=$?; true
- echo "$TRAVIS_COMMIT_MSG" | grep '\[ci only docs\]'; export ONLY_DOCS=$?; true

Expand Down

0 comments on commit a017ea0

Please sign in to comment.