Skip to content

Commit 829f892

Browse files
alexfiklinducer
authored andcommitted
docs: update intersphinx mapping from deprecated variant
1 parent 7199da2 commit 829f892

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

doc/conf.py

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from urllib.request import urlopen
22

3+
34
_conf_url = \
45
"https://raw.githubusercontent.com/inducer/sphinxconfig/main/sphinxconfig.py"
56
with urlopen(_conf_url) as _inf:
@@ -15,16 +16,16 @@
1516
release = ver_dic["VERSION_TEXT"]
1617

1718
intersphinx_mapping = {
18-
"https://docs.python.org/3/": None,
19-
"https://numpy.org/doc/stable/": None,
20-
"https://documen.tician.de/pytools": None,
21-
"https://documen.tician.de/pymbolic": None,
22-
"https://documen.tician.de/pyopencl": None,
23-
"https://documen.tician.de/pytato": None,
24-
"https://documen.tician.de/loopy": None,
25-
"https://documen.tician.de/meshmode": None,
26-
"https://docs.pytest.org/en/latest/": None,
27-
"https://jax.readthedocs.io/en/latest/": None,
19+
"jax": ("https://jax.readthedocs.io/en/latest/", None),
20+
"loopy": ("https://documen.tician.de/loopy", None),
21+
"meshmode": ("https://documen.tician.de/meshmode", None),
22+
"numpy": ("https://numpy.org/doc/stable/", None),
23+
"pymbolic": ("https://documen.tician.de/pymbolic", None),
24+
"pyopencl": ("https://documen.tician.de/pyopencl", None),
25+
"pytato": ("https://documen.tician.de/pytato", None),
26+
"pytest": ("https://docs.pytest.org/en/latest/", None),
27+
"python": ("https://docs.python.org/3/", None),
28+
"pytools": ("https://documen.tician.de/pytools", None),
2829
}
2930

3031
# Some modules need to import things just so that sphinx can resolve symbols in
@@ -37,4 +38,6 @@
3738
# this needs a setting of the same name across all packages involved, that's
3839
# why this name is as global-sounding as it is.
3940
import sys
41+
42+
4043
sys._BUILDING_SPHINX_DOCS = True

0 commit comments

Comments
 (0)