From 9dbc258841f9a86602d8882ec4d51d74e11195f8 Mon Sep 17 00:00:00 2001 From: Tennessee Leeuwenburg Date: Tue, 17 Sep 2024 18:25:03 +1000 Subject: [PATCH] Configure the documentation build to avoid three warnings during build time which are OK --- docs/conf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 6cfb5070..ce3e48c3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,10 @@ templates_path = ["_templates"] exclude_patterns = [ - "**/.ipynb_checkpoints", + "**/.ipynb_checkpoints", # Still built, just means it's not in a navbar / TOC + "tutorials/README.md", # Still built, just means it's not in a navbar / TOC + "coding_practices.md", # Still built, just means it's not in a navbar / TOC + "SECURITY.md", # Still built, just means it's not in a navbar / TOC ] # -- Options for HTML output -------------------------------------------------