-
-
Notifications
You must be signed in to change notification settings - Fork 64
Description
@larryhastings has been working hard on solving the long-standing problem of managing updates to the Misc/NEWS file in the cpython repos. That file in each branch is an input to the corresponding documentation build to produce its changelog (e.g. https://docs.python.org/3.6/whatsnew/changelog.html). With the changes that Larry is now rolling out to the various branches (already in 3.5), the Docs build now has a dependency on a new utility called blurb
(https://pypi.python.org/pypi/blurb/1.0.4). We need to make sure that blurb
is now on the PATH during the Docs build. I'm not quite sure what is the best way to accomplish this on docs.iad1.psf.io. The Makefile currently expects blurb
to be installed in the python3
that is available in the Docs build, whether that is a "system" python3 or a venv python3 is a question. So pip installing blurb
into the right python3 should solve the problem. See the build
recipe in the cpython Doc/Makefile
for details (currently 3.5 has been updated but others will follow soon).
The specific pip requirement should be:
blurb>=1.0.4
This is a high priority item because the website docs break as these changes are pushed into the various branches.