Skip to content
Closed
Show file tree
Hide file tree
Changes from 13 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
3 changes: 2 additions & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Documentation on Read the Docs is intended to be built from released
# git tags to support versioned documentation.
version: 2

build:
Expand Down
8 changes: 7 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,13 @@

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = []
exclude_patterns = [
"build",
"Thumbs.db",
".DS_Store",
"error_code_list.rst",
Copy link
Copy Markdown
Contributor

@wyattscarpenter wyattscarpenter Jan 11, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are these necessary for some reason?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. I originally added them here to silence the [toc.not_included] warnings, but I realize now that exclude_patterns prevents the redirect HTML files from being built entirely.
I will revert this change and instead add the :orphan: metadata to the top of the .rst files. That should silence the warning while still generating the redirects.

"error_code_list2.rst",
]

# The reST default role (used for this markup: `text`) to use for all
# documents.
Expand Down
Loading