Skip to content

Commit 8354984

Browse files
committed
install pip 10 on python 3.3
to get requires_python support
1 parent d4c7e09 commit 8354984

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)