From 61af280262d475865107e66032717d76be2a67fe Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Mon, 8 Sep 2025 19:19:10 +0200 Subject: [PATCH] conf.py: exclude common/* Avoid that common/setup.html is generated --- .gitignore | 1 + conf.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 87927dfeae..2434f4d3cb 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ __pycache__ /._view /view /.spack-env +/.venv diff --git a/conf.py b/conf.py index f7c6b77412..3bd96297fe 100644 --- a/conf.py +++ b/conf.py @@ -213,7 +213,7 @@ def setup(sphinx): # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ["_build", "_spack_root", "view", "._view"] +exclude_patterns = ["_build", "_spack_root", "view", "._view", "common/*", ".venv"] # The reST default role (used for this markup: `text`) to use for all documents. # default_role = None