diff options
author | Steve Dower <steve.dower@python.org> | 2020-06-01 21:17:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 21:17:23 (GMT) |
commit | fe5dd78182dbf4937bcc2b113ca7526bfad0192b (patch) | |
tree | 10ed052573a8bd9d98f037c19e1cd4686322ca3d /Doc | |
parent | c353764fd564e401cf47a5d9efab18c72c60014e (diff) | |
download | cpython-fe5dd78182dbf4937bcc2b113ca7526bfad0192b.zip cpython-fe5dd78182dbf4937bcc2b113ca7526bfad0192b.tar.gz cpython-fe5dd78182dbf4937bcc2b113ca7526bfad0192b.tar.bz2 |
Ensure correct version of Sphinx is used for Windows builds (GH-20582)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/make.bat | 2 |
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())" |