diff --git a/docs/source/conf.py b/docs/source/conf.py index 5f7e34dd..8b170651 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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"