Skip to content

Commit

Permalink
Merge pull request #35 from martin-g/fix-mapping-urls
Browse files Browse the repository at this point in the history
Fix the inter Sphinx mappings for Conda urls
  • Loading branch information
bgruening authored Dec 2, 2024
2 parents 471d2b1 + ea4a65c commit a609df5
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 a609df5

Please sign in to comment.