https://github.com/python/cpython/commit/025536484db35a3455074066a9df58e8f6904cec commit: 025536484db35a3455074066a9df58e8f6904cec branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-03-06T08:49:30+02:00 summary:
[3.14] Docs: use a Sphinx extension to eliminate excessive links (GH-145130) (#145575) Docs: use a Sphinx extension to eliminate excessive links (GH-145130) (cherry picked from commit 15f6479c415cc6cd219cd25c1d94bab17d720cbc) Co-authored-by: Ned Batchelder <[email protected]> files: M Doc/conf.py M Doc/requirements.txt diff --git a/Doc/conf.py b/Doc/conf.py index a4275835059efa..7466d8ac869803 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -42,6 +42,7 @@ # Skip if downstream redistributors haven't installed them _OPTIONAL_EXTENSIONS = ( + 'linklint.ext', 'notfound.extension', 'sphinxext.opengraph', ) diff --git a/Doc/requirements.txt b/Doc/requirements.txt index d0107744ecbe85..536ae57e4efc29 100644 --- a/Doc/requirements.txt +++ b/Doc/requirements.txt @@ -18,4 +18,6 @@ sphinx-notfound-page~=1.0.0 # 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]
