accidentally opening a jupyter notebook in api/
caused apidoc to try to incorporate that into
the api docs.
This commit is contained in:
2025-10-24 15:10:13 -05:00
parent e3ffd2210b
commit 97d4d9c9a7
2 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@
*.egg-info *.egg-info
doc/_build/ doc/_build/
*.ipynb_checkpoints/ *.ipynb_checkpoints/
fancymath.log

View File

@@ -17,7 +17,13 @@ release = '0.0.1'
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"] extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"]
templates_path = ['_templates'] templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.ipynb_checkpoints'] exclude_patterns = [
'_build',
'Thumbs.db',
'.DS_Store',
'.ipynb_checkpoints',
'api/.ipynb_checkpoints'
]