Skip to content

Commit

Permalink
removed venv directories from being parsed by sphinx
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Papior <nickpapior@gmail.com>
  • Loading branch information
zerothi committed Oct 27, 2023
1 parent 849437c commit ef5eb1e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@
exclude_patterns = ['build', '**/setupegg.py', '**/setup.rst', '**/tests', '**.ipynb_checkpoints']
exclude_patterns.append("**/GUI with Python Demo.ipynb")
exclude_patterns.append("**/Building a plot class.ipynb")
for _venv in pathlib.Path(".").glob("*venv*"):
exclude_patterns.append(str(_venv.name))

# The reST default role (used for this markup: `text`) to use for all
# documents.
Expand Down

0 comments on commit ef5eb1e

Please sign in to comment.