Skip to content

Commit

Permalink
Fox the inter Sphinx mappings for Conda urls
Browse files Browse the repository at this point in the history
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 <mgrigorov@apache.org>
  • Loading branch information
martin-g committed Nov 27, 2024
1 parent 5021bc4 commit 26f724f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}

Expand Down

0 comments on commit 26f724f

Please sign in to comment.