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

Victor Stinner webhook-mailer at python.org
Thu Apr 9 19:41:07 EDT 2020


https://github.com/python/cpython/commit/9e5f159d3279a6b476d588010d529cfdbb8c8803
commit: 9e5f159d3279a6b476d588010d529cfdbb8c8803
branch: 3.7
author: Victor Stinner <vstinner at python.org>
committer: GitHub <noreply at github.com>
date: 2020-04-10T01:40:58+02:00
summary:

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

(cherry picked from commit 37a257c0ae0d4ba746397ae7584db887b175ab24)

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 08013c0ef48c0..803d1c00aced2 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -127,7 +127,7 @@ clean:
 
 venv:
 	$(PYTHON) -m venv $(VENVDIR)
-	$(VENVDIR)/bin/python3 -m pip install -U Sphinx blurb
+	$(VENVDIR)/bin/python3 -m pip install -U Sphinx==1.8.2 blurb
 	@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