We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4330b67 + 5323071 commit 78d09cfCopy full SHA for 78d09cf
.travis.yml
@@ -6,8 +6,7 @@ matrix:
6
include:
7
- python: '2.7'
8
env: COVER=1
9
- # For some reason not working.
10
- # - python: '3.3'
+ - python: '3.3'
11
- python: '3.4'
12
- python: '3.5'
13
- python: '3.6'
Makefile
@@ -30,7 +30,9 @@ check-virtualenv:
30
bootstrap: check-virtualenv install-deps
31
32
install-deps:
33
- pip install 'setuptools>=20.8.1'
+ # We need to limit to <40.0.0 as long as we support Python 3.3.
34
+ # See https://github.com/pypa/setuptools/commit/7392f01ffced3acfdef25b0b2d55cefdc6ee468a.
35
+ pip install 'setuptools>=20.8.1,<40.0.0'
36
pip install -r requirements.txt
37
pip install -r requirements-test.txt
38
python setup.py develop
0 commit comments