From: Victor Stinner Date: Thu, 9 Apr 2020 23:40:58 +0000 (+0200) Subject: bpo-40204: Pin Sphinx version to 1.8.2 in Doc/Makefile (GH-19442) (GH-19443) X-Git-Tag: v3.7.8rc1~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e5f159d3279a6b476d588010d529cfdbb8c8803;p=thirdparty%2FPython%2Fcpython.git bpo-40204: Pin Sphinx version to 1.8.2 in Doc/Makefile (GH-19442) (GH-19443) (cherry picked from commit 37a257c0ae0d4ba746397ae7584db887b175ab24) --- diff --git a/Doc/Makefile b/Doc/Makefile index 08013c0ef48c..803d1c00aced 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 000000000000..e08f36f03cb5 --- /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``.