https://github.com/python/cpython/commit/199d88e26e33aff6d269a9fe7c7354e189616589 commit: 199d88e26e33aff6d269a9fe7c7354e189616589 branch: 3.14 author: Ned Batchelder <[email protected]> committer: nedbat <[email protected]> date: 2026-08-26T18:22:24-04:00 summary:
[3.14] Docs(build): linklint is now called sphinx_linklint (GH-156373) (#156428) * Docs(build): linklint is now called sphinx_linklint --------- (cherry picked from commit 98bd716479dacb1e618a4271df10b2b67c010c4c) Co-authored-by: Stan Ulbrych <[email protected]> files: M Doc/conf.py M Doc/requirements.txt diff --git a/Doc/conf.py b/Doc/conf.py index 98e5531585d3f6..980cb3ea707dc3 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -40,7 +40,7 @@ # Skip if downstream redistributors haven't installed them _OPTIONAL_EXTENSIONS = ( - 'linklint.ext', + 'sphinx_linklint.ext', 'notfound.extension', 'sphinxext.opengraph', 'sphinxcontrib.rsvgconverter', diff --git a/Doc/requirements.txt b/Doc/requirements.txt index 536ae57e4efc29..fc3424bb61dbb2 100644 --- a/Doc/requirements.txt +++ b/Doc/requirements.txt @@ -11,13 +11,12 @@ sphinx<9.0.0 blurb -sphinxext-opengraph~=0.13.0 +sphinx-linklint sphinx-notfound-page~=1.0.0 +sphinxext-opengraph~=0.13.0 # The theme used by the documentation is stored separately, so we need # to install that as well. python-docs-theme>=2023.3.1,!=2023.7 -linklint - -c constraints.txt _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
