Skip to content

Commit f097491

Browse files
committed
Install the latest six, to avoid errors on upgrade
I think this should fix our intermittent Python 3.4 failures. I think six is required for the pip install, so upgrading (which removes and then installs a new copy) causes problems. We can avoid the upgrade by installing the latest six beforehand.
1 parent bb485e6 commit f097491

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ python:
77
- "3.6"
88
# Apparently six must be installed first, otherwise setup.py will be unhappy
99
install:
10-
- pip install six
10+
- pip install --upgrade six
1111
- pip install --upgrade -r requirements_dev.txt
1212
script: py.test --cov .
1313
after_success: coveralls

0 commit comments

Comments
 (0)