From 633220607da113543670dbe0099d230cc73c687e Mon Sep 17 00:00:00 2001 From: Michele Peresano Date: Mon, 4 Mar 2024 10:44:23 +0100 Subject: [PATCH] Make sphinx ignore changes directory --- docs/source/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 1b7eb86..63de89a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -38,7 +38,13 @@ ] templates_path = ["_templates"] -exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "**.ipynb_checkpoints"] +exclude_patterns = [ + "_build", + "Thumbs.db", + ".DS_Store", + "**.ipynb_checkpoints", + "changes", +] nitpicky = True # Report warnings for all validation checks except "ES01", "SA01", "EX01"