Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Bugs fixed
English stemmer) and Dutch (which uses the Dutch Porter stemmer).
Patch by Hugo van Kemenade

* #14625: Allow suppressing warnings for unmatched toctree glob patterns using
``toc.empty_glob``.
Patch by Michel Albert


Release 9.1.0 (released Dec 31, 2025)
=====================================
Expand Down
1 change: 1 addition & 0 deletions sphinx/directives/other.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def parse_content(self, toctree: addnodes.toctree) -> None:
__("toctree glob pattern %r didn't match any documents"),
entry,
location=toctree,
type='toc',
Comment thread
jdillard marked this conversation as resolved.
subtype='empty_glob',
)

Expand Down
Loading