From c97311c12e84ef21c5b376ffc60e7e89247afea8 Mon Sep 17 00:00:00 2001 From: Steph Prince <40640337+stephprince@users.noreply.github.com> Date: Mon, 22 Apr 2024 10:31:42 -0700 Subject: [PATCH] ignore cache warnings in sphinx --- docs/source/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 6f69fc4c1..4eaf1a19b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -168,6 +168,8 @@ def __call__(self, filename): nitpick_ignore = [('py:class', 'Intracomm'), ('py:class', 'BaseStorageSpec')] +suppress_warnings = ["config.cache"] + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']