From 30bca9f91ec6fc6f5c9478369b62bbc5af1e41dc Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 28 Mar 2019 16:20:19 -0400 Subject: [PATCH] force loading of Sphinx version 1.7.6 instead of 2.0.0 or later, so the spellchecker keeps working --- doc/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index 5c679440b8..fa60aa3698 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -211,7 +211,7 @@ $(VENV): @( \ $(VIRTUALENV) -p $(PYTHON) $(VENV); \ . $(VENV)/bin/activate; \ - pip install Sphinx; \ + pip install Sphinx==1.7.6; \ deactivate;\ )