This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Building the html documentation is broken
Type: behavior Stage: resolved
Components: Build Versions: Python 3.8
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: ned.deily, serhiy.storchaka
Priority: normal Keywords:

Created on 2018-03-04 20:47 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg313219 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-03-04 20:47
$ make html BLURB="python3 -m blurb"
mkdir -p build
Building NEWS from Misc/NEWS.d with blurb
PATH=./venv/bin:$PATH sphinx-build -b html -d build/doctrees -D latex_elements.papersize=  . build/html 
Running Sphinx v1.5.6
loading pickled environment... not yet created

Theme error:
no theme named 'python_docs_theme' found (missing theme.conf?)
Makefile:43: recipe for target 'build' failed
make: *** [build] Error 1
msg313220 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-03-04 20:49
You need to install that component.  The easiest way is:

cd Doc
make venv
make html
msg313221 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-03-04 21:03
Thank you! All works now.

I tried `make clean` before, but not `make venv`.
History
Date User Action Args
2022-04-11 14:58:58adminsetgithub: 77175
2018-03-04 21:03:53serhiy.storchakasetmessages: + msg313221
2018-03-04 20:49:10ned.deilysetstatus: open -> closed

nosy: + ned.deily
messages: + msg313220

resolution: not a bug
stage: resolved
2018-03-04 20:47:27serhiy.storchakacreate