mirror of
https://github.com/python/cpython.git
synced 2025-09-30 12:21:51 +00:00
bpo-33696: Install python-docs-theme even if SPHINXBUILD is defined (GH-7242)
This commit is contained in:
parent
143ce5c6db
commit
05f1c8902c
1 changed files with 7 additions and 9 deletions
16
Doc/make.bat
16
Doc/make.bat
|
@ -16,15 +16,16 @@ if not defined SPHINXBUILD (
|
||||||
%PYTHON% -m pip install sphinx
|
%PYTHON% -m pip install sphinx
|
||||||
if errorlevel 1 exit /B
|
if errorlevel 1 exit /B
|
||||||
)
|
)
|
||||||
%PYTHON% -c "import python_docs_theme" > nul 2> nul
|
|
||||||
if errorlevel 1 (
|
|
||||||
echo Installing python-docs-theme with %PYTHON%
|
|
||||||
%PYTHON% -m pip install python-docs-theme
|
|
||||||
if errorlevel 1 exit /B
|
|
||||||
)
|
|
||||||
set SPHINXBUILD=%PYTHON% -c "import sphinx, sys; sys.argv[0] = 'sphinx-build'; sys.exit(sphinx.main())"
|
set SPHINXBUILD=%PYTHON% -c "import sphinx, sys; sys.argv[0] = 'sphinx-build'; sys.exit(sphinx.main())"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
%PYTHON% -c "import python_docs_theme" > nul 2> nul
|
||||||
|
if errorlevel 1 (
|
||||||
|
echo Installing python-docs-theme with %PYTHON%
|
||||||
|
%PYTHON% -m pip install python-docs-theme
|
||||||
|
if errorlevel 1 exit /B
|
||||||
|
)
|
||||||
|
|
||||||
if not defined BLURB (
|
if not defined BLURB (
|
||||||
%PYTHON% -c "import blurb" > nul 2> nul
|
%PYTHON% -c "import blurb" > nul 2> nul
|
||||||
if errorlevel 1 (
|
if errorlevel 1 (
|
||||||
|
@ -35,9 +36,6 @@ if not defined BLURB (
|
||||||
set BLURB=%PYTHON% -m blurb
|
set BLURB=%PYTHON% -m blurb
|
||||||
)
|
)
|
||||||
|
|
||||||
if not defined SPHINXBUILD set SPHINXBUILD=sphinx-build
|
|
||||||
if not defined BLURB set BLURB=blurb
|
|
||||||
|
|
||||||
if "%1" NEQ "htmlhelp" goto :skiphhcsearch
|
if "%1" NEQ "htmlhelp" goto :skiphhcsearch
|
||||||
if exist "%HTMLHELP%" goto :skiphhcsearch
|
if exist "%HTMLHELP%" goto :skiphhcsearch
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue