Skip to content

Commit

Permalink
docs: Ignore autosummary.import_cycle warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonymouX47 committed Sep 3, 2024
1 parent f18c52c commit e0181a1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,14 @@
"sphinxcontrib.prettyspecialmethods",
]

# -- Warnings ----------------------------------------------------------------
suppress_warnings = [
# `autosummary` issues a plethora of this warning.
# See https://github.com/sphinx-doc/sphinx/issues/12589.
# NOTE: Check back later.
'autosummary.import_cycle',
]

# -- Options for HTML output -------------------------------------------------
html_theme = "furo"
html_logo = "resources/logo.png"
Expand Down

0 comments on commit e0181a1

Please sign in to comment.