From d37a76bf6101e5075bb6f82d36e360b6bac13d32 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 18 Apr 2024 19:46:02 -0400 Subject: [PATCH] Ignore warning about caching Sphinx config --- doc/sphinx/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py index 13e3081d72..d03da1084d 100644 --- a/doc/sphinx/conf.py +++ b/doc/sphinx/conf.py @@ -119,6 +119,8 @@ def __call__(self, block, block_vars, gallery_conf): } } +suppress_warnings = ["config.cache"] # Triggered by objects in sphinx_gallery_conf + # Override sphinx-gallery's method for determining which examples should be executed. # There's really no way to achieve this with the `filename_pattern` option, and # `ignore_pattern` excludes the example entirely.