Skip to content

Commit e0181a1

Browse files
committed
docs: Ignore autosummary.import_cycle warnings
Ref: sphinx-doc/sphinx#12589
1 parent f18c52c commit e0181a1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docs/source/conf.py

+8
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@
3737
"sphinxcontrib.prettyspecialmethods",
3838
]
3939

40+
# -- Warnings ----------------------------------------------------------------
41+
suppress_warnings = [
42+
# `autosummary` issues a plethora of this warning.
43+
# See https://github.com/sphinx-doc/sphinx/issues/12589.
44+
# NOTE: Check back later.
45+
'autosummary.import_cycle',
46+
]
47+
4048
# -- Options for HTML output -------------------------------------------------
4149
html_theme = "furo"
4250
html_logo = "resources/logo.png"

0 commit comments

Comments
 (0)