summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-06-01 21:24:10 (GMT)
committerGitHub <noreply@github.com>2020-06-01 21:24:10 (GMT)
commitb90b61f23148bc404006f7e021a8373896c55b07 (patch)
tree5aa91440a65c62612e32ff5ef1b0aceabb43afa4
parent3c7609a23cf6e011f2cd411e28d9dcb1b087929c (diff)
downloadcpython-b90b61f23148bc404006f7e021a8373896c55b07.zip
cpython-b90b61f23148bc404006f7e021a8373896c55b07.tar.gz
cpython-b90b61f23148bc404006f7e021a8373896c55b07.tar.bz2
Ensure correct version of Sphinx is used for Windows builds (GH-20582)
(cherry picked from commit fe5dd78182dbf4937bcc2b113ca7526bfad0192b) Co-authored-by: Steve Dower <steve.dower@python.org>
-rw-r--r--Doc/make.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/make.bat b/Doc/make.bat
index 6f8f172..7fde063 100644
--- a/Doc/make.bat
+++ b/Doc/make.bat
@@ -13,7 +13,7 @@ if not defined SPHINXBUILD (
%PYTHON% -c "import sphinx" > nul 2> nul
if errorlevel 1 (
echo Installing sphinx with %PYTHON%
- %PYTHON% -m pip install sphinx
+ %PYTHON% -m pip install sphinx==2.2.0
if errorlevel 1 exit /B
)
set SPHINXBUILD=%PYTHON% -c "import sphinx.cmd.build, sys; sys.exit(sphinx.cmd.build.main())"