Skip to content

Commit 20c3fc6

Browse files
authored
conf.py: exclude common/* (#491)
Avoid that common/setup.html is generated
1 parent 7ea29d8 commit 20c3fc6

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ __pycache__
1010
/._view
1111
/view
1212
/.spack-env
13+
/.venv

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ def setup(sphinx):
213213

214214
# List of patterns, relative to source directory, that match files and
215215
# directories to ignore when looking for source files.
216-
exclude_patterns = ["_build", "_spack_root", "view", "._view"]
216+
exclude_patterns = ["_build", "_spack_root", "view", "._view", "common/*", ".venv"]
217217

218218
# The reST default role (used for this markup: `text`) to use for all documents.
219219
# default_role = None

0 commit comments

Comments
 (0)