Skip to content

Commit 78d09cf

Browse files
authored
Merge pull request #56 from isaachier/travis-fix
Fix Travis for Python 3.3
2 parents 4330b67 + 5323071 commit 78d09cf

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ matrix:
66
include:
77
- python: '2.7'
88
env: COVER=1
9-
# For some reason not working.
10-
# - python: '3.3'
9+
- python: '3.3'
1110
- python: '3.4'
1211
- python: '3.5'
1312
- python: '3.6'

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ check-virtualenv:
3030
bootstrap: check-virtualenv install-deps
3131

3232
install-deps:
33-
pip install 'setuptools>=20.8.1'
33+
# 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'
3436
pip install -r requirements.txt
3537
pip install -r requirements-test.txt
3638
python setup.py develop

0 commit comments

Comments
 (0)