From 6b64ac3ba598cb89e31c0fb16cd6a6e69ca11bd4 Mon Sep 17 00:00:00 2001 From: moe-ad Date: Wed, 11 Dec 2024 11:57:50 +0100 Subject: [PATCH] fix: exclusion of example file causing failure from doc-build --- doc/source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/source/conf.py b/doc/source/conf.py index 7390890e9c..b9d2c7b30e 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -62,6 +62,7 @@ ignored_pattern += f"|{example_name}" ignored_pattern += "|11-server_types.py" ignored_pattern += "|06-distributed_stress_averaging.py" +ignored_pattern += "|02-python_operators_with_dependencies.py" ignored_pattern += r")" # -- General configuration ---------------------------------------------------