Skip to content

Commit c6f42c9

Browse files
committed
Pin setuptools==17.1 to install rnd_requirements
rnd_requirements.txt uses .zip dependencies that now utilise environment markers from pyexcel#7. setuptools before 17.1 causes pip to fail with: error in <x> setup command: Invalid environment marker: <y>
1 parent 2c90251 commit c6f42c9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

templates/travis.yml.jj2

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ python:
2121
before_install:
2222
{% block custom_install %}
2323
{% endblock%}
24-
- if [[ -f rnd_requirements.txt ]]; then pip install -r rnd_requirements.txt; fi
24+
- if [[ -f rnd_requirements.txt ]]; then
25+
pip install --upgrade "setuptools==17.1" ;
26+
pip install -r rnd_requirements.txt ;
27+
fi
2528
- pip install -r tests/requirements.txt
2629
script:
2730
make test

0 commit comments

Comments
 (0)