]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40204: Pin Sphinx version to 2.3.1 in ``Doc/Makefile``. (GH-21141)
authorNed Deily <nad@python.org>
Thu, 25 Jun 2020 11:22:10 +0000 (07:22 -0400)
committerGitHub <noreply@github.com>
Thu, 25 Jun 2020 11:22:10 +0000 (07:22 -0400)
Doc/Makefile
Misc/NEWS.d/next/Build/2020-06-25-06-59-13.bpo-40204.GpD04D.rst [new file with mode: 0644]

index 05361f2ee2c82f07b4ecf1450528f03a2c694513..b8ca1edfbc60a58cabc4f29b770329fe1b45bbc4 100644 (file)
@@ -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 (file)
index 0000000..25a6d75
--- /dev/null
@@ -0,0 +1 @@
+Pin Sphinx version to 2.3.1 in ``Doc/Makefile``.