]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40204: Pin Sphinx version to 1.8.2 in Doc/Makefile (GH-19442)
authorVictor Stinner <vstinner@python.org>
Wed, 8 Apr 2020 22:36:13 +0000 (00:36 +0200)
committerGitHub <noreply@github.com>
Wed, 8 Apr 2020 22:36:13 +0000 (00:36 +0200)
Doc/Makefile
Misc/NEWS.d/next/Build/2020-04-09-00-19-10.bpo-40204.K-S6RZ.rst [new file with mode: 0644]

index f589b6e75f6180426ae6e4fca6d28a265473cf41..2169f1a369549585353c75c443d0b6c71b6c29f3 100644 (file)
@@ -143,7 +143,7 @@ clean:
 venv:
        $(PYTHON) -m venv $(VENVDIR)
        $(VENVDIR)/bin/python3 -m pip install -U pip setuptools
-       $(VENVDIR)/bin/python3 -m pip install -U Sphinx blurb python-docs-theme
+       $(VENVDIR)/bin/python3 -m pip install -U Sphinx==1.8.2 blurb python-docs-theme
        @echo "The venv has been created in the $(VENVDIR) directory"
 
 dist:
diff --git a/Misc/NEWS.d/next/Build/2020-04-09-00-19-10.bpo-40204.K-S6RZ.rst b/Misc/NEWS.d/next/Build/2020-04-09-00-19-10.bpo-40204.K-S6RZ.rst
new file mode 100644 (file)
index 0000000..e08f36f
--- /dev/null
@@ -0,0 +1 @@
+Pin Sphinx version to 1.8.2 in ``Doc/Makefile``.