Skip to content

Commit

Permalink
Fixed documentation generation
Browse files Browse the repository at this point in the history
  • Loading branch information
tBuLi committed Dec 17, 2022
1 parent 8582112 commit 81ed348
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 64 deletions.
15 changes: 14 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,19 @@
'nbsphinx',
]

intersphinx_mapping = {
'sympy': ('https://docs.sympy.org/latest', None),
'symfit': ('https://symfit.readthedocs.io/en/stable/', None),
'python': ('https://docs.python.org/3', None),
}

nitpick_ignore = [
('py:mod', 'sympy'),
('py:class', 'sympy.core.Symbol'),
]

autodoc_mock_imports = ["sympy"]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down Expand Up @@ -75,7 +88,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This patterns also effect to html_static_path and html_extra_path
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ['_build', 'build_docs', 'Thumbs.db', '.DS_Store', '**.ipynb_checkpoints']

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Expand Down

0 comments on commit 81ed348

Please sign in to comment.