From f859ba3389c5718186790348d57590a925433b86 Mon Sep 17 00:00:00 2001 From: Rambaud Pierrick <12rambau@users.noreply.github.com> Date: Tue, 26 Nov 2024 20:59:13 +0100 Subject: [PATCH 1/2] docs: set all the intersphinx lib --- docs/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 0ca213eb..9b24165e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -121,9 +121,13 @@ autoapi_keep_files = False # -- Options for intersphinx output -------------------------------------------- +# fmt: off intersphinx_mapping = { + "python": ("https://docs.python.org/3", None) "matplotlib": ("https://matplotlib.org/stable/", None), + "ee": ("https://developers.google.com/earth-engine/apidocs", "https://raw.githubusercontent.com/gee-community/sphinx-inventory/refs/heads/main/inventory/earthengine-api.inv"), } +# fmt: on # -- options for the autolabel extension --------------------------------------- autosectionlabel_prefix_document = True From de94156c2e3c33331b2f606e460a66430e305ec9 Mon Sep 17 00:00:00 2001 From: Pierrick Rambaud Date: Tue, 26 Nov 2024 21:43:29 +0100 Subject: [PATCH 2/2] refactor: typo --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9b24165e..083b87b3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -123,7 +123,7 @@ # -- Options for intersphinx output -------------------------------------------- # fmt: off intersphinx_mapping = { - "python": ("https://docs.python.org/3", None) + "python": ("https://docs.python.org/3", None), "matplotlib": ("https://matplotlib.org/stable/", None), "ee": ("https://developers.google.com/earth-engine/apidocs", "https://raw.githubusercontent.com/gee-community/sphinx-inventory/refs/heads/main/inventory/earthengine-api.inv"), }