lock the sphinx command to version 1.5.6, since version 1.6.x seems to break one of the extensions we use

This commit is contained in:
Axel Kohlmeyer 2017-05-18 00:50:35 -04:00
parent 085f3afdfb
commit bd11479a16
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ $(VENV):
@( \
virtualenv -p $(PYTHON) $(VENV); \
. $(VENV)/bin/activate; \
pip install Sphinx; \
pip install Sphinx==1.5.6; \
pip install sphinxcontrib-images; \
deactivate;\
)