Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the development-dependencies group across 1 directory with 9 updates #754

Merged
merged 2 commits into from
Jul 23, 2024
Merged
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
10 changes: 10 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,16 @@
ENABLE_PLAUSIBLE = os.environ.get("READTHEDOCS_VERSION_TYPE", "") in ["branch", "tag"]
html_context = {"enable_plausible": ENABLE_PLAUSIBLE}

# -- Sphinx 7.4 workaround

# Sphinx 7.4 introduced a warning when symbols would have the current module as prefix, which
# autosummary does. This was meant to be fixed by 7.4.6 and 7.4.7, but apparently not in my
# case.
# TODO(ab): remove when fixed in Sphinx. When doing so, force sphinx to >=${FIXED_VERSION}
suppress_warnings = [
"autosummary.import_cycle",
]


# noinspection PyUnusedLocal
def autodoc_skip_member(app, what, name, obj, skip, options):
Expand Down
Loading
Loading