From: Victor Stinner Date: Wed, 8 Apr 2020 22:36:13 +0000 (+0200) Subject: bpo-40204: Pin Sphinx version to 1.8.2 in Doc/Makefile (GH-19442) X-Git-Tag: v3.8.3rc1~45 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=37a257c0ae0d4ba746397ae7584db887b175ab24;p=thirdparty%2FPython%2Fcpython.git bpo-40204: Pin Sphinx version to 1.8.2 in Doc/Makefile (GH-19442) --- diff --git a/Doc/Makefile b/Doc/Makefile index f589b6e75f61..2169f1a36954 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 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``.