We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b97343a commit 7271870Copy full SHA for 7271870
docs/conf.py
@@ -41,6 +41,7 @@
41
'sphinx.ext.viewcode',
42
'sphinx.ext.doctest',
43
'myst_parser',
44
+ "sphinx.ext.intersphinx",
45
]
46
47
import sphinx_autodoc_typehints
@@ -194,3 +195,13 @@
194
195
author, 'openeo', 'One line description of project.',
196
'Miscellaneous'),
197
198
+
199
200
+# Mapping for external documentation
201
+intersphinx_mapping = {
202
+ "python": ("https://docs.python.org/3", None),
203
+ "numpy": ("https://numpy.org/doc/stable/", None),
204
+ "xarray": ("https://docs.xarray.dev/en/stable/", None),
205
+ "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
206
+ "urllib3": ("https://urllib3.readthedocs.io/en/stable/", None),
207
+}
0 commit comments