|
1 | 1 | from urllib.request import urlopen |
2 | 2 |
|
| 3 | + |
3 | 4 | _conf_url = \ |
4 | 5 | "https://raw.githubusercontent.com/inducer/sphinxconfig/main/sphinxconfig.py" |
5 | 6 | with urlopen(_conf_url) as _inf: |
|
15 | 16 | release = ver_dic["VERSION_TEXT"] |
16 | 17 |
|
17 | 18 | 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), |
28 | 29 | } |
29 | 30 |
|
30 | 31 | # Some modules need to import things just so that sphinx can resolve symbols in |
|
37 | 38 | # this needs a setting of the same name across all packages involved, that's |
38 | 39 | # why this name is as global-sounding as it is. |
39 | 40 | import sys |
| 41 | + |
| 42 | + |
40 | 43 | sys._BUILDING_SPHINX_DOCS = True |
0 commit comments