Skip to content

Commit 7337195

Browse files
committed
[no ci] docs: add intersphinx mappings
1 parent 99511f2 commit 7337195

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

docsrc/source/conf.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@
5454
"sphinxcontrib.bibtex",
5555
]
5656

57+
intersphinx_mapping = {
58+
"python": ("https://docs.python.org/{.major}".format(sys.version_info), None),
59+
"numpy": ("https://numpy.org/doc/stable", None),
60+
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
61+
"matplotlib": ("https://matplotlib.org/", None),
62+
"pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
63+
"seaborn": ("https://seaborn.pydata.org/", None),
64+
}
65+
5766
bibtex_bibfiles = ["references.bib"]
5867

5968
numpydoc_show_class_members = False
@@ -82,23 +91,13 @@
8291
exclude_patterns = []
8392

8493
# Options for autodoc and autosummary
85-
autodoc_default_options = {
86-
# "members": True,
87-
# "undoc-members": True,
88-
# "imported-members": True,
89-
# "inherited-members": False,
90-
# "show-inheritance": True,
91-
# "special-members": "__call__",
92-
"memberorder": "bysource",
93-
}
9494
# do not ignore __all__, use it to determine public members
9595
autosummary_ignore_module_all = False
9696
# include imported members in autosummary
9797
autosummary_imported_members = False
9898
# selects content to insert into the main body of an autoclass directive.
9999
autoclass_content = "both"
100100

101-
102101
# -- Options for HTML output -------------------------------------------------
103102

104103
# The theme to use for HTML and HTML Help pages. See the documentation for

0 commit comments

Comments
 (0)