From ea4a65c7ce4d1014bfd87064a680244662cd10fb Mon Sep 17 00:00:00 2001 From: Martin Tzvetanov Grigorov Date: Wed, 27 Nov 2024 16:39:18 +0200 Subject: [PATCH] Fix the inter Sphinx mappings for Conda urls Fixes the following warnings: ``` loading intersphinx inventory 'conda.io' from https://conda.io/en/latest/objects.inv ... loading intersphinx inventory 'conda-build' from https://conda.io/projects/conda-build/en/latest/objects.inv ... loading intersphinx inventory 'conda' from https://conda.io/projects/conda/en/latest/objects.inv ... intersphinx inventory has moved: https://conda.io/en/latest/objects.inv -> https://docs.conda.io/en/latest/objects.inv intersphinx inventory has moved: https://conda.io/projects/conda/en/latest/objects.inv -> https://docs.conda.io/projects/conda/en/latest/objects.inv intersphinx inventory has moved: https://conda.io/projects/conda-build/en/latest/objects.inv -> https://docs.conda.io/projects/conda-build/en/latest/objects.inv ``` Signed-off-by: Martin Tzvetanov Grigorov --- source/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/conf.py b/source/conf.py index 00eb4d5..4bc4600 100644 --- a/source/conf.py +++ b/source/conf.py @@ -300,9 +300,9 @@ def setup(app): # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { "python": ("https://docs.python.org/3", None), - "conda.io": ("https://conda.io/en/latest", None), - "conda-build": ("https://conda.io/projects/conda-build/en/latest/", None), - "conda": ("https://conda.io/projects/conda/en/latest/", None), + "conda.io": ("https://docs.conda.io/en/latest", None), + "conda-build": ("https://docs.conda.io/projects/conda-build/en/latest/", None), + "conda": ("https://docs.conda.io/projects/conda/en/latest/", None), "sphinx": ("https://www.sphinx-doc.org/en/master/", None), }