Skip to content

Commit

Permalink
fix intersphinx mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelHu authored Nov 18, 2024
1 parent 4c81bb7 commit 19ee8d0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,18 @@
# intersphinx
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"numpy": ("http://docs.scipy.org/doc/numpy", None),
"scipy": ("http://docs.scipy.org/doc/scipy/reference", None),
"numpy": ("https://numpy.org/doc/stable", None),
"scipy": ("https://docs.scipy.org/doc/scipy/reference", None),
"pandas": ("https://pandas.pydata.org/docs", None),
"matplotlib": ("http://matplotlib.org/stable", None),
"matplotlib": ("https://matplotlib.org/stable", None),
"pyg4ometry": ("https://pyg4ometry.readthedocs.io/en/stable", None)
} # add new intersphinx mappings here

# sphinx-autodoc
# Include __init__() docstring in class docstring
autoclass_content = "both"
autodoc_typehints = "description"
autodoc_typehints_description_target = "documented_params"
autodoc_typehints_description_target = "all"
autodoc_typehints_format = "short"

autodoc_type_aliases = {
Expand Down

0 comments on commit 19ee8d0

Please sign in to comment.