From af8368c56ee6aa5fd9452929e8bb383f485d0256 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 9 Apr 2020 00:16:11 +0200 Subject: [PATCH] bpo-40204: Pin Sphinx version to 1.8.2 in Doc/Makefile --- Doc/Makefile | 2 +- Misc/NEWS.d/next/Build/2020-04-09-00-19-10.bpo-40204.K-S6RZ.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Build/2020-04-09-00-19-10.bpo-40204.K-S6RZ.rst diff --git a/Doc/Makefile b/Doc/Makefile index f589b6e75f6180..2169f1a3695495 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 00000000000000..e08f36f03cb5a6 --- /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``.