From 8a4b59d94768be179c5ff825e30f88d2fe0018f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Fr=C3=B6se?= Date: Fri, 2 Dec 2022 10:25:41 +0100 Subject: [PATCH] exclude changes --- docs/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 357867ceaa3..f9b8be9b899 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -166,7 +166,13 @@ def setup(app): # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This patterns also effect to html_static_path and html_extra_path -exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "**.ipynb_checkpoints"] +exclude_patterns = [ + "_build", + "Thumbs.db", + ".DS_Store", + "**.ipynb_checkpoints", + "changes", +] # The name of the Pygments (syntax highlighting) style to use. pygments_style = "sphinx"