summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-06-25 11:28:47 (GMT)
committerGitHub <noreply@github.com>2020-06-25 11:28:47 (GMT)
commit16e79a47ca3b4efb2300f24aa084c20bb5e8ae0d (patch)
treed77d87456ebc9443b45ba9c025c42770a9e9abd9
parentbdc55eb55f7a88e374593dea1257566c2db3f5e4 (diff)
downloadcpython-16e79a47ca3b4efb2300f24aa084c20bb5e8ae0d.zip
cpython-16e79a47ca3b4efb2300f24aa084c20bb5e8ae0d.tar.gz
cpython-16e79a47ca3b4efb2300f24aa084c20bb5e8ae0d.tar.bz2
bpo-40204: Pin Sphinx version to 2.3.1 in ``Doc/Makefile``. (GH-21141)
(cherry picked from commit 589e8fe07934a8585d6c5c31d12ae5f766b8fec7) Co-authored-by: Ned Deily <nad@python.org>
-rw-r--r--Doc/Makefile2
-rw-r--r--Misc/NEWS.d/next/Build/2020-06-25-06-59-13.bpo-40204.GpD04D.rst1
2 files changed, 2 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index 05361f2..b8ca1ed 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==2.2.0 blurb python-docs-theme
+ $(VENVDIR)/bin/python3 -m pip install -U Sphinx==2.3.1 blurb python-docs-theme
@echo "The venv has been created in the $(VENVDIR) directory"
dist:
diff --git a/Misc/NEWS.d/next/Build/2020-06-25-06-59-13.bpo-40204.GpD04D.rst b/Misc/NEWS.d/next/Build/2020-06-25-06-59-13.bpo-40204.GpD04D.rst
new file mode 100644
index 0000000..25a6d75
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2020-06-25-06-59-13.bpo-40204.GpD04D.rst
@@ -0,0 +1 @@
+Pin Sphinx version to 2.3.1 in ``Doc/Makefile``.