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: Cant compile html docs
Type: compile error Stage: resolved
Components: Documentation Versions: Python 3.11
process
Status: closed Resolution: works for me
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, mikecmcleod, zach.ware
Priority: normal Keywords:

Created on 2022-03-31 16:17 by mikecmcleod, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (3)
msg416448 - (view) Author: mike mcleod (mikecmcleod) * Date: 2022-03-31 16:17
After sync'ing to upstream/main and then
python/Doc on  main via 🐍 v3.11.0a6+ 
❯ make html
mkdir -p build
Building NEWS from Misc/NEWS.d with blurb
PATH=./venv/bin:$PATH sphinx-build -b html -d build/doctrees   -W . build/html 
Running Sphinx v3.5.4
building [mo]: targets for 0 po files that are out of date
building [html]: targets for 495 source files that are out of date
updating environment: [new config] 495 added, 0 changed, 0 removed
reading sources... [100%] whatsnew/index                                        
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
preparing documents... failed

Warning, treated as error:
unsupported theme option 'license_url' given
make: *** [Makefile:53: build] Error 2

No changes to source.
msg416449 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2022-03-31 16:24
You have a rather old version of Sphinx; the 3.11 docs are built with v4.5.0.  Try `make clean-venv venv html`?
msg416478 - (view) Author: mike mcleod (mikecmcleod) * Date: 2022-04-01 09:04
Works for me. The command installed the correct version of Sphinx.
Thanks.
History
Date User Action Args
2022-04-11 14:59:57adminsetgithub: 91339
2022-04-01 09:04:13mikecmcleodsetstatus: pending -> closed

messages: + msg416478
stage: resolved
2022-03-31 20:12:05zach.waresetstatus: open -> pending
resolution: works for me
2022-03-31 16:24:33zach.waresetnosy: + zach.ware
messages: + msg416449
2022-03-31 16:17:03mikecmcleodcreate