From 97d4d9c9a7d1250a1919e0cf414711bcc7a65af9 Mon Sep 17 00:00:00 2001 From: Tim Diller Date: Fri, 24 Oct 2025 15:10:13 -0500 Subject: [PATCH] Fix #12 accidentally opening a jupyter notebook in api/ caused apidoc to try to incorporate that into the api docs. --- .gitignore | 1 + doc/conf.py | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 60cf7b2..cfd17e1 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ *.egg-info doc/_build/ *.ipynb_checkpoints/ +fancymath.log \ No newline at end of file diff --git a/doc/conf.py b/doc/conf.py index 3bd544f..dc57f3d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -17,7 +17,13 @@ release = '0.0.1' extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"] templates_path = ['_templates'] -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.ipynb_checkpoints'] +exclude_patterns = [ + '_build', + 'Thumbs.db', + '.DS_Store', + '.ipynb_checkpoints', + 'api/.ipynb_checkpoints' +]