[Python-checkins] bpo-40204: Pin Sphinx version to 1.8.2 in Doc/Makefile (GH-19442)

Victor Stinner webhook-mailer at python.org
Wed Apr 8 18:36:21 EDT 2020


https://github.com/python/cpython/commit/37a257c0ae0d4ba746397ae7584db887b175ab24
commit: 37a257c0ae0d4ba746397ae7584db887b175ab24
branch: 3.8
author: Victor Stinner <vstinner at python.org>
committer: GitHub <noreply at github.com>
date: 2020-04-09T00:36:13+02:00
summary:

bpo-40204: Pin Sphinx version to 1.8.2 in Doc/Makefile (GH-19442)

files:
A Misc/NEWS.d/next/Build/2020-04-09-00-19-10.bpo-40204.K-S6RZ.rst
M Doc/Makefile

diff --git a/Doc/Makefile b/Doc/Makefile
index f589b6e75f618..2169f1a369549 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -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
index 0000000000000..e08f36f03cb5a
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2020-04-09-00-19-10.bpo-40204.K-S6RZ.rst
@@ -0,0 +1 @@
+Pin Sphinx version to 1.8.2 in ``Doc/Makefile``.



More information about the Python-checkins mailing list