Skip to content

Commit

Permalink
docs: update intersphinx mapping from deprecated variant
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl authored and inducer committed Apr 25, 2023
1 parent 935767a commit d35aa57
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
with urlopen(_conf_url) as _inf:
exec(compile(_inf.read(), _conf_url, "exec"), globals())

extensions.extend([
extensions.extend([ # noqa: F821
"sphinx.ext.graphviz",
"sphinxcontrib.tikz",
])
Expand All @@ -24,22 +24,22 @@
release = ver_dic["VERSION_TEXT"]

intersphinx_mapping = {
"https://docs.python.org/3/": None,
"https://numpy.org/doc/stable/": None,
"https://documen.tician.de/pytools": None,
"https://documen.tician.de/pyopencl": None,
"https://documen.tician.de/meshpy": None,
"https://documen.tician.de/modepy": None,
"https://documen.tician.de/arraycontext": None,
"https://documen.tician.de/loopy": None,
"https://documen.tician.de/gmsh_interop": None,
"https://documen.tician.de/pymetis": None,
"https://firedrakeproject.org/": None,
"https://tisaac.gitlab.io/recursivenodes/": None,
"https://fenics.readthedocs.io/projects/fiat/en/latest/": None,
"https://finat.github.io/FInAT/": None,
"https://mpi4py.readthedocs.io/en/stable": None,
"arraycontext": ("https://documen.tician.de/arraycontext", None),
"fenics": ("https://fenics.readthedocs.io/projects/fiat/en/latest", None),
"FInAT": ("https://finat.github.io/FInAT/", None),
"firedrake": ("https://firedrakeproject.org", None),
"gmsh_interop": ("https://documen.tician.de/gmsh_interop", None),
"h5py": ("https://docs.h5py.org/en/stable", None),
"loopy": ("https://documen.tician.de/loopy", None),
"meshpy": ("https://documen.tician.de/meshpy", None),
"modepy": ("https://documen.tician.de/modepy", None),
"mpi4py": ("https://mpi4py.readthedocs.io/en/stable", None),
"numpy": ("https://numpy.org/doc/stable", None),
"pymetis": ("https://documen.tician.de/pymetis", None),
"pyopencl": ("https://documen.tician.de/pyopencl", None),
"python": ("https://docs.python.org/3", None),
"pytools": ("https://documen.tician.de/pytools", None),
"recursivenodes": ("https://tisaac.gitlab.io/recursivenodes", None),
}


Expand All @@ -53,4 +53,5 @@
# this needs a setting of the same name across all packages involved, that's
# why this name is as global-sounding as it is.
import sys

sys._BUILDING_SPHINX_DOCS = True

0 comments on commit d35aa57

Please sign in to comment.