Skip to content

Commit f7d8060

Browse files
authored
Merge pull request #410 from minrk/5.x
install pip 10 on travis python 3.3
2 parents d4c7e09 + 8354984 commit f7d8060

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ python:
88
- 2.7
99
sudo: false
1010
install:
11+
- |
12+
# install pip 10 on python 3.3
13+
# to get requires_python support
14+
if [[ $TRAVIS_PYTHON_VERSION == "3.3" ]]; then
15+
pip install pip==10.*
16+
fi
1117
- pip install --upgrade setuptools pip
1218
- pip install --upgrade --pre -e .[test] pytest-cov pytest-warnings codecov
1319
script:

0 commit comments

Comments
 (0)