Skip to content

Commit

Permalink
docs: Add intersphinx linkages
Browse files Browse the repository at this point in the history
For any references that go back into those, they're not
reachable for doc rendering without this.

Signed-off-by: Brian Harring <[email protected]>
Closes: #658
Signed-off-by: Arthur Zamarin <[email protected]>
  • Loading branch information
ferringb authored and arthurzam committed Jan 27, 2024
1 parent afeaf1e commit 49a5f82
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,3 +324,13 @@

# If false, no index is generated.
# epub_use_index = True

intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"chardet": ("https://chardet.readthedocs.io/en/latest", None),
"lazy-object-proxy": ("https://python-lazy-object-proxy.readthedocs.io/en/latest", None),
"setuptools": ("https://setuptools.pypa.io/en/latest", None),
}
intersphinx_mapping.update(
(x, (f"https://pkgcore.github.io/{x}", None)) for x in ("pkgcore snakeoil").split()
)

0 comments on commit 49a5f82

Please sign in to comment.