force loading of Sphinx version 1.7.6 instead of 2.0.0 or later, so the spellchecker keeps working

This commit is contained in:
Axel Kohlmeyer 2019-03-28 16:20:19 -04:00
parent 93f531441a
commit 30bca9f91e
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ $(VENV):
@( \
$(VIRTUALENV) -p $(PYTHON) $(VENV); \
. $(VENV)/bin/activate; \
pip install Sphinx; \
pip install Sphinx==1.7.6; \
deactivate;\
)