intersphinx-registry 0.2410.14__tar.gz → 0.2411.13__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/PKG-INFO +17 -2
- {intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/README.md +15 -0
- {intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/intersphinx_registry/__init__.py +1 -1
- {intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/intersphinx_registry/lookup.py +2 -1
- {intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/intersphinx_registry/registry.json +94 -74
- {intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/LICENSE +0 -0
- {intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/intersphinx_registry/py.typed +0 -0
- {intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: intersphinx_registry
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2411.13
|
|
4
4
|
Summary: This package provides convenient utilities and data to write a sphinx config file.
|
|
5
5
|
Author-email: Matthias Bussonnier <bussonniermatthias@gmail.com>
|
|
6
6
|
Description-Content-Type: text/markdown
|
|
@@ -32,6 +32,21 @@ intersphinx_mapping.update({
|
|
|
32
32
|
})
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
+
## quick lookup
|
|
36
|
+
|
|
37
|
+
You can use the following to lookup target/webpages of various packages.
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
$ python -m intersphinx_registry.lookup ipython | grep whatsnew7
|
|
41
|
+
whatsnew700 IPython 7.0.0 : whatsnew/version7.html#whatsnew700
|
|
42
|
+
whatsnew710 IPython 7.1.0 : whatsnew/version7.html#whatsnew710
|
|
43
|
+
whatsnew720 IPython 7.2.0 : whatsnew/version7.html#whatsnew720
|
|
44
|
+
whatsnew730 IPython 7.3.0 : whatsnew/version7.html#whatsnew730
|
|
45
|
+
whatsnew740 IPython 7.4.0 : whatsnew/version7.html#whatsnew740
|
|
46
|
+
whatsnew750 IPython 7.5.0 : whatsnew/version7.html#whatsnew750
|
|
47
|
+
whatsnew760 IPython 7.6.0 : whatsnew/version7.html#whatsnew760
|
|
48
|
+
```
|
|
49
|
+
|
|
35
50
|
|
|
36
51
|
## Why ?
|
|
37
52
|
|
|
@@ -17,6 +17,21 @@ intersphinx_mapping.update({
|
|
|
17
17
|
})
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
## quick lookup
|
|
21
|
+
|
|
22
|
+
You can use the following to lookup target/webpages of various packages.
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
$ python -m intersphinx_registry.lookup ipython | grep whatsnew7
|
|
26
|
+
whatsnew700 IPython 7.0.0 : whatsnew/version7.html#whatsnew700
|
|
27
|
+
whatsnew710 IPython 7.1.0 : whatsnew/version7.html#whatsnew710
|
|
28
|
+
whatsnew720 IPython 7.2.0 : whatsnew/version7.html#whatsnew720
|
|
29
|
+
whatsnew730 IPython 7.3.0 : whatsnew/version7.html#whatsnew730
|
|
30
|
+
whatsnew740 IPython 7.4.0 : whatsnew/version7.html#whatsnew740
|
|
31
|
+
whatsnew750 IPython 7.5.0 : whatsnew/version7.html#whatsnew750
|
|
32
|
+
whatsnew760 IPython 7.6.0 : whatsnew/version7.html#whatsnew760
|
|
33
|
+
```
|
|
34
|
+
|
|
20
35
|
|
|
21
36
|
## Why ?
|
|
22
37
|
|
{intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/intersphinx_registry/__init__.py
RENAMED
|
@@ -11,7 +11,7 @@ from typing import Dict, Tuple, Set, Optional, cast
|
|
|
11
11
|
# See issue 4, we this the best format is Major.YYMM.day,
|
|
12
12
|
# in case of multiple releases a day we can borrow the next day's date.
|
|
13
13
|
# no 0 in front of the day as it is not pep440 compliant.
|
|
14
|
-
__version__ = "0.
|
|
14
|
+
__version__ = "0.2411.13"
|
|
15
15
|
|
|
16
16
|
registry_file = Path(__file__).parent / "registry.json"
|
|
17
17
|
|
{intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/intersphinx_registry/lookup.py
RENAMED
|
@@ -3,6 +3,7 @@ import sys
|
|
|
3
3
|
from intersphinx_registry import get_intersphinx_mapping
|
|
4
4
|
import logging as _logging
|
|
5
5
|
from sphinx.ext.intersphinx import inspect_main
|
|
6
|
+
from urllib.parse import urljoin
|
|
6
7
|
|
|
7
8
|
if len(sys.argv) != 2:
|
|
8
9
|
sys.exit("Usage: python -m intersphinx_registry.lookup <package>")
|
|
@@ -11,7 +12,7 @@ packages = set([sys.argv[1]])
|
|
|
11
12
|
|
|
12
13
|
# there will be only one url
|
|
13
14
|
urls = [
|
|
14
|
-
u[0]
|
|
15
|
+
urljoin(u[0], (u[1] if u[1] else "objects.inv"))
|
|
15
16
|
for u in get_intersphinx_mapping(packages=packages).values()
|
|
16
17
|
]
|
|
17
18
|
|
{intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/intersphinx_registry/registry.json
RENAMED
|
@@ -1,124 +1,128 @@
|
|
|
1
1
|
{
|
|
2
|
-
"anndata": ["https://anndata.readthedocs.io/en/stable", null],
|
|
3
|
-
"asdf-astropy": ["https://asdf-astropy.readthedocs.io/en/latest", null],
|
|
2
|
+
"anndata": ["https://anndata.readthedocs.io/en/stable/", null],
|
|
3
|
+
"asdf-astropy": ["https://asdf-astropy.readthedocs.io/en/latest/", null],
|
|
4
4
|
"astropy-dev": ["https://docs.astropy.org/en/latest/", null],
|
|
5
|
-
"asv": ["https://asv.readthedocs.io/en/stable", null],
|
|
6
|
-
"asyncssh": ["https://asyncssh.readthedocs.io/en/latest", null],
|
|
5
|
+
"asv": ["https://asv.readthedocs.io/en/stable/", null],
|
|
6
|
+
"asyncssh": ["https://asyncssh.readthedocs.io/en/latest/", null],
|
|
7
7
|
"attrs": ["https://www.attrs.org/en/stable/", null],
|
|
8
|
-
"
|
|
8
|
+
"azure-core": ["https://azuresdkdocs.blob.core.windows.net/$web/python/azure-core/latest/", null],
|
|
9
|
+
"azure-identity": ["https://azuresdkdocs.blob.core.windows.net/$web/python/azure-identity/latest/", null],
|
|
10
|
+
"bhub": ["https://binderhub.readthedocs.io/en/latest/", null],
|
|
9
11
|
"bokeh": ["https://docs.bokeh.org/en/latest/", null],
|
|
10
|
-
"boltons": ["https://boltons.readthedocs.io/en/latest", null],
|
|
12
|
+
"boltons": ["https://boltons.readthedocs.io/en/latest/", null],
|
|
11
13
|
"bottle": ["https://bottlepy.org/docs/dev/", null],
|
|
12
14
|
"build": ["https://build.pypa.io/en/latest/", null],
|
|
13
15
|
"cartopy": ["https://scitools.org.uk/cartopy/docs/latest/", null],
|
|
14
|
-
"cffi": ["https://cffi.readthedocs.io/en/latest", null],
|
|
16
|
+
"cffi": ["https://cffi.readthedocs.io/en/latest/", null],
|
|
15
17
|
"click": ["https://click.palletsprojects.com/", null],
|
|
16
18
|
"conda": ["https://conda.io/en/latest/", null],
|
|
19
|
+
"configspace": ["https://automl.github.io/ConfigSpace/latest/", null],
|
|
17
20
|
"cycler": ["https://matplotlib.org/cycler/", null],
|
|
18
21
|
"cython": ["https://docs.cython.org/en/latest/", null],
|
|
19
22
|
"dask": ["https://docs.dask.org/en/latest/", null],
|
|
20
|
-
"dateutil": ["https://dateutil.readthedocs.io/en/latest", null],
|
|
23
|
+
"dateutil": ["https://dateutil.readthedocs.io/en/latest/", null],
|
|
21
24
|
"devguide": ["https://devguide.python.org/", null],
|
|
22
25
|
"devpi": ["https://devpi.net/docs/devpi/devpi/latest/+doc/", null],
|
|
23
|
-
"dh-virtualenv": ["https://dh-virtualenv.readthedocs.io/en/latest", null],
|
|
26
|
+
"dh-virtualenv": ["https://dh-virtualenv.readthedocs.io/en/latest/", null],
|
|
24
27
|
"dipy": ["https://docs.dipy.org/stable/", null],
|
|
25
|
-
"distlib": ["https://distlib.readthedocs.io/en/latest", null],
|
|
28
|
+
"distlib": ["https://distlib.readthedocs.io/en/latest/", null],
|
|
26
29
|
"distributed": ["https://distributed.dask.org/en/stable/", null],
|
|
27
30
|
"django": [
|
|
28
31
|
"https://docs.djangoproject.com/en/stable/",
|
|
29
32
|
"https://docs.djangoproject.com/en/stable/_objects/"
|
|
30
33
|
],
|
|
31
34
|
"dlpack": ["https://dmlc.github.io/dlpack/latest/", null],
|
|
32
|
-
"flax": ["https://flax.readthedocs.io/en/latest", null],
|
|
33
|
-
"flexx": ["https://flexx.readthedocs.io/en/latest", null],
|
|
34
|
-
"fsspec": ["https://filesystem-spec.readthedocs.io/en/latest", null],
|
|
35
|
+
"flax": ["https://flax.readthedocs.io/en/latest/", null],
|
|
36
|
+
"flexx": ["https://flexx.readthedocs.io/en/latest/", null],
|
|
37
|
+
"fsspec": ["https://filesystem-spec.readthedocs.io/en/latest/", null],
|
|
35
38
|
"geopandas": ["https://geopandas.org/en/stable/", null],
|
|
36
|
-
"hub": ["https://jupyterhub.readthedocs.io/en/latest", null],
|
|
37
|
-
"imageio": ["https://imageio.readthedocs.io/en/stable", null],
|
|
39
|
+
"hub": ["https://jupyterhub.readthedocs.io/en/latest/", null],
|
|
40
|
+
"imageio": ["https://imageio.readthedocs.io/en/stable/", null],
|
|
38
41
|
"importlib-resources": [
|
|
39
|
-
"https://importlib-resources.readthedocs.io/en/latest",
|
|
42
|
+
"https://importlib-resources.readthedocs.io/en/latest/",
|
|
40
43
|
null
|
|
41
44
|
],
|
|
42
|
-
"ipykernel": ["https://ipykernel.readthedocs.io/en/latest", null],
|
|
43
|
-
"ipyleaflet": ["https://ipyleaflet.readthedocs.io/en/latest", null],
|
|
44
|
-
"ipyparallel": ["https://ipyparallel.readthedocs.io/en/latest", null],
|
|
45
|
-
"ipython": ["https://ipython.readthedocs.io/en/latest", null],
|
|
46
|
-
"ipywidgets": ["https://ipywidgets.readthedocs.io/en/latest", null],
|
|
47
|
-
"jax": ["https://jax.readthedocs.io/en/latest", null],
|
|
48
|
-
"jedi": ["https://jedi.readthedocs.io/en/latest", null],
|
|
45
|
+
"ipykernel": ["https://ipykernel.readthedocs.io/en/latest/", null],
|
|
46
|
+
"ipyleaflet": ["https://ipyleaflet.readthedocs.io/en/latest/", null],
|
|
47
|
+
"ipyparallel": ["https://ipyparallel.readthedocs.io/en/latest/", null],
|
|
48
|
+
"ipython": ["https://ipython.readthedocs.io/en/latest/", null],
|
|
49
|
+
"ipywidgets": ["https://ipywidgets.readthedocs.io/en/latest/", null],
|
|
50
|
+
"jax": ["https://jax.readthedocs.io/en/latest/", null],
|
|
51
|
+
"jedi": ["https://jedi.readthedocs.io/en/latest/", null],
|
|
49
52
|
"jinja": ["https://jinja.palletsprojects.com/", null],
|
|
50
|
-
"joblib": ["https://joblib.readthedocs.io/en/latest", null],
|
|
53
|
+
"joblib": ["https://joblib.readthedocs.io/en/latest/", null],
|
|
51
54
|
"jupyter": ["https://docs.jupyter.org/en/latest/", null],
|
|
52
|
-
"jupyter-server": ["https://jupyter-server.readthedocs.io/en/stable", null],
|
|
53
|
-
"jupyter_core": ["https://jupyter-core.readthedocs.io/en/stable", null],
|
|
55
|
+
"jupyter-server": ["https://jupyter-server.readthedocs.io/en/stable/", null],
|
|
56
|
+
"jupyter_core": ["https://jupyter-core.readthedocs.io/en/stable/", null],
|
|
54
57
|
"jupyterbook": ["https://jupyterbook.org/en/stable/", null],
|
|
55
|
-
"jupyterclient": ["https://jupyter-client.readthedocs.io/en/latest", null],
|
|
56
|
-
"jupytercore": ["https://jupyter-core.readthedocs.io/en/latest", null],
|
|
57
|
-
"jupytext": ["https://jupytext.readthedocs.io/en/stable", null],
|
|
58
|
-
"kwarray": ["https://kwarray.readthedocs.io/en/latest", null],
|
|
59
|
-
"kwimage": ["https://kwimage.readthedocs.io/en/latest", null],
|
|
60
|
-
"lab": ["https://jupyterlab.readthedocs.io/en/latest", null],
|
|
61
|
-
"llvmlite": ["https://llvmlite.readthedocs.io/en/latest", null],
|
|
58
|
+
"jupyterclient": ["https://jupyter-client.readthedocs.io/en/latest/", null],
|
|
59
|
+
"jupytercore": ["https://jupyter-core.readthedocs.io/en/latest/", null],
|
|
60
|
+
"jupytext": ["https://jupytext.readthedocs.io/en/stable/", null],
|
|
61
|
+
"kwarray": ["https://kwarray.readthedocs.io/en/latest/", null],
|
|
62
|
+
"kwimage": ["https://kwimage.readthedocs.io/en/latest/", null],
|
|
63
|
+
"lab": ["https://jupyterlab.readthedocs.io/en/latest/", null],
|
|
64
|
+
"llvmlite": ["https://llvmlite.readthedocs.io/en/latest/", null],
|
|
62
65
|
"lxml": ["https://lxml.de/apidoc/", null],
|
|
63
66
|
"magicgui": ["https://pyapp-kit.github.io/magicgui/", null],
|
|
64
|
-
"markdown_it": ["https://markdown-it-py.readthedocs.io/en/latest", null],
|
|
67
|
+
"markdown_it": ["https://markdown-it-py.readthedocs.io/en/latest/", null],
|
|
65
68
|
"matplotlib": ["https://matplotlib.org/stable/", null],
|
|
66
|
-
"meson-python": ["https://meson-python.readthedocs.io/en/stable", null],
|
|
69
|
+
"meson-python": ["https://meson-python.readthedocs.io/en/stable/", null],
|
|
67
70
|
"mne": ["https://mne.tools/stable/", null],
|
|
68
71
|
"mne_bids": ["https://mne.tools/mne-bids/stable/", null],
|
|
69
72
|
"mne_icalabel": ["https://mne.tools/mne-icalabel/stable/", null],
|
|
70
73
|
"mne_lsl": ["https://mne.tools/mne-lsl/stable/", null],
|
|
71
|
-
"monkeytype": ["https://monkeytype.readthedocs.io/en/latest", null],
|
|
74
|
+
"monkeytype": ["https://monkeytype.readthedocs.io/en/latest/", null],
|
|
72
75
|
"mpmath": ["https://mpmath.org/doc/current/", null],
|
|
73
|
-
"myst-nb": ["https://myst-nb.readthedocs.io/en/
|
|
74
|
-
"myst-parser": ["https://myst-parser.readthedocs.io/en/
|
|
76
|
+
"myst-nb": ["https://myst-nb.readthedocs.io/en/latest/", null],
|
|
77
|
+
"myst-parser": ["https://myst-parser.readthedocs.io/en/latest/", null],
|
|
75
78
|
"napari_plugin_engine": [
|
|
76
|
-
"https://napari-plugin-engine.readthedocs.io/en/latest",
|
|
79
|
+
"https://napari-plugin-engine.readthedocs.io/en/latest/",
|
|
77
80
|
null
|
|
78
81
|
],
|
|
79
|
-
"nbconvert": ["https://nbconvert.readthedocs.io/en/latest", null],
|
|
80
|
-
"nbformat": ["https://nbformat.readthedocs.io/en/latest", null],
|
|
81
|
-
"nbgitpuller": ["https://nbgitpuller.readthedocs.io/en/latest", null],
|
|
82
|
+
"nbconvert": ["https://nbconvert.readthedocs.io/en/latest/", null],
|
|
83
|
+
"nbformat": ["https://nbformat.readthedocs.io/en/latest/", null],
|
|
84
|
+
"nbgitpuller": ["https://nbgitpuller.readthedocs.io/en/latest/", null],
|
|
82
85
|
"nbsphinx": ["https://nbsphinx.readthedocs.io/", null],
|
|
83
|
-
"ndsampler": ["https://ndsampler.readthedocs.io/en/latest", null],
|
|
86
|
+
"ndsampler": ["https://ndsampler.readthedocs.io/en/latest/", null],
|
|
84
87
|
"neps": ["https://numpy.org/neps/", null],
|
|
85
88
|
"networkx": ["https://networkx.org/documentation/stable/", null],
|
|
86
89
|
"nibabel": ["https://nipy.org/nibabel/", null],
|
|
87
90
|
"nilearn": ["https://nilearn.github.io/stable/", null],
|
|
88
|
-
"notebook": ["https://jupyter-notebook.readthedocs.io/en/stable", null],
|
|
91
|
+
"notebook": ["https://jupyter-notebook.readthedocs.io/en/stable/", null],
|
|
89
92
|
"nox": ["https://nox.thea.codes/en/latest/", null],
|
|
90
|
-
"numba": ["https://numba.readthedocs.io/en/latest", null],
|
|
93
|
+
"numba": ["https://numba.readthedocs.io/en/latest/", null],
|
|
91
94
|
"numpy": ["https://numpy.org/doc/stable/", null],
|
|
92
95
|
"numpy-tutorials": ["https://numpy.org/numpy-tutorials/", null],
|
|
93
|
-
"numpydoc": ["https://numpydoc.readthedocs.io/en/latest", null],
|
|
96
|
+
"numpydoc": ["https://numpydoc.readthedocs.io/en/latest/", null],
|
|
94
97
|
"nx-guides": ["https://networkx.org/nx-guides/", null],
|
|
95
98
|
"openstack": ["https://docs.openstack.org/glance/latest/", null],
|
|
96
99
|
"pandas": ["https://pandas.pydata.org/docs/", null],
|
|
97
|
-
"pandas-gbq": ["https://pandas-gbq.readthedocs.io/en/latest", null],
|
|
98
|
-
"parso": ["https://parso.readthedocs.io/en/latest", null],
|
|
99
|
-
"patsy": ["https://patsy.readthedocs.io/en/latest", null],
|
|
100
|
-
"pillow": ["https://pillow.readthedocs.io/en/stable", null],
|
|
100
|
+
"pandas-gbq": ["https://pandas-gbq.readthedocs.io/en/latest/", null],
|
|
101
|
+
"parso": ["https://parso.readthedocs.io/en/latest/", null],
|
|
102
|
+
"patsy": ["https://patsy.readthedocs.io/en/latest/", null],
|
|
103
|
+
"pillow": ["https://pillow.readthedocs.io/en/stable/", null],
|
|
101
104
|
"pip": ["https://pip.pypa.io/en/latest/", null],
|
|
102
105
|
"pipenv": ["https://pipenv.pypa.io/en/latest/", null],
|
|
103
|
-
"piwheels": ["https://piwheels.readthedocs.io/en/latest", null],
|
|
104
|
-
"pluggy": ["https://pluggy.readthedocs.io/en/stable", null],
|
|
106
|
+
"piwheels": ["https://piwheels.readthedocs.io/en/latest/", null],
|
|
107
|
+
"pluggy": ["https://pluggy.readthedocs.io/en/stable/", null],
|
|
105
108
|
"poliastro": ["https://docs.poliastro.space/en/stable/", null],
|
|
106
109
|
"prompt_toolkit": [
|
|
107
|
-
"https://python-prompt-toolkit.readthedocs.io/en/stable",
|
|
110
|
+
"https://python-prompt-toolkit.readthedocs.io/en/stable/",
|
|
108
111
|
null
|
|
109
112
|
],
|
|
110
|
-
"py": ["https://pylib.readthedocs.io/en/latest", null],
|
|
113
|
+
"py": ["https://pylib.readthedocs.io/en/latest/", null],
|
|
111
114
|
"pyarrow": ["https://arrow.apache.org/docs/", null],
|
|
112
|
-
"pybind11": ["https://pybind11.readthedocs.io/en/stable", null],
|
|
113
|
-
"pyerfa": ["https://pyerfa.readthedocs.io/en/stable", null],
|
|
115
|
+
"pybind11": ["https://pybind11.readthedocs.io/en/stable/", null],
|
|
116
|
+
"pyerfa": ["https://pyerfa.readthedocs.io/en/stable/", null],
|
|
114
117
|
"pygraphviz": ["https://pygraphviz.github.io/documentation/stable/", null],
|
|
115
118
|
"pymde": ["https://pymde.org/", null],
|
|
116
|
-
"pymongo": ["https://pymongo.readthedocs.io/en/stable", null],
|
|
117
|
-
"pynsist": ["https://pynsist.readthedocs.io/en/latest", null],
|
|
119
|
+
"pymongo": ["https://pymongo.readthedocs.io/en/stable/", null],
|
|
120
|
+
"pynsist": ["https://pynsist.readthedocs.io/en/latest/", null],
|
|
121
|
+
"pyodide": ["https://pyodide.org/en/stable/", null],
|
|
118
122
|
"pypa": ["https://www.pypa.io/en/latest/", null],
|
|
119
123
|
"pypug": ["https://packaging.python.org/en/latest/", null],
|
|
120
124
|
"pypy": ["https://doc.pypy.org/en/latest/", null],
|
|
121
|
-
"pyqtgraph": ["https://pyqtgraph.readthedocs.io/en/latest", null],
|
|
125
|
+
"pyqtgraph": ["https://pyqtgraph.readthedocs.io/en/latest/", null],
|
|
122
126
|
"pyro": ["https://docs.pyro.ai/en/stable/", null],
|
|
123
127
|
"pytest": ["https://pytest.org/en/stable/", null],
|
|
124
128
|
"python": ["https://docs.python.org/3/", null],
|
|
@@ -127,29 +131,44 @@
|
|
|
127
131
|
"pyvista": ["https://docs.pyvista.org/", null],
|
|
128
132
|
"qiskit": ["https://docs.quantum.ibm.com/api/qiskit/", null],
|
|
129
133
|
"qtconsole": ["https://jupyter.org/qtconsole/dev/", null],
|
|
130
|
-
"readthedocs": ["https://docs.readthedocs.io/en/stable", null],
|
|
134
|
+
"readthedocs": ["https://docs.readthedocs.io/en/stable/", null],
|
|
135
|
+
"referencing": ["https://referencing.readthedocs.io/en/stable/", null],
|
|
131
136
|
"requests": ["https://docs.python-requests.org/en/latest/", null],
|
|
132
137
|
"rpy2": ["https://rpy2.github.io/doc/latest/html/", null],
|
|
133
|
-
"rst-to-myst": ["https://rst-to-myst.readthedocs.io/en/stable", null],
|
|
134
|
-
"rtd": ["https://docs.readthedocs.io/en/stable", null],
|
|
135
|
-
"rtd-dev": ["https://dev.readthedocs.io/en/latest", null],
|
|
136
|
-
"scanpy": ["https://scanpy.readthedocs.io/en/stable", null],
|
|
138
|
+
"rst-to-myst": ["https://rst-to-myst.readthedocs.io/en/stable/", null],
|
|
139
|
+
"rtd": ["https://docs.readthedocs.io/en/stable/", null],
|
|
140
|
+
"rtd-dev": ["https://dev.readthedocs.io/en/latest/", null],
|
|
141
|
+
"scanpy": ["https://scanpy.readthedocs.io/en/stable/", null],
|
|
137
142
|
"scipy": ["https://docs.scipy.org/doc/scipy/", null],
|
|
138
143
|
"scipy-lecture-notes": ["https://scipy-lectures.org/", null],
|
|
139
|
-
"scriptconfig": ["https://scriptconfig.readthedocs.io/en/latest", null],
|
|
144
|
+
"scriptconfig": ["https://scriptconfig.readthedocs.io/en/latest/", null],
|
|
140
145
|
"seaborn": ["https://seaborn.pydata.org/", null],
|
|
141
|
-
"server": ["https://jupyter-server.readthedocs.io/en/stable", null],
|
|
146
|
+
"server": ["https://jupyter-server.readthedocs.io/en/stable/", null],
|
|
142
147
|
"setuptools": ["https://setuptools.pypa.io/en/stable/", null],
|
|
143
148
|
"six": ["https://six.readthedocs.io/", null],
|
|
144
149
|
"skimage": ["https://scikit-image.org/docs/stable/", null],
|
|
145
150
|
"sklearn": ["https://scikit-learn.org/stable/", null],
|
|
151
|
+
"smac": ["https://automl.github.io/SMAC3/main/", null],
|
|
146
152
|
"sounddevice": ["https://python-sounddevice.readthedocs.io/", null],
|
|
147
|
-
"spack": ["https://spack.readthedocs.io/en/latest", null],
|
|
153
|
+
"spack": ["https://spack.readthedocs.io/en/latest/", null],
|
|
148
154
|
"sparse": ["https://sparse.pydata.org/en/latest/", null],
|
|
149
155
|
"sphinx": ["https://www.sphinx-doc.org/en/master/", null],
|
|
156
|
+
"sphinx-copybutton": [
|
|
157
|
+
"https://sphinx-copybutton.readthedocs.io/en/latest/",
|
|
158
|
+
null
|
|
159
|
+
],
|
|
160
|
+
"sphinx-design": [
|
|
161
|
+
"https://sphinx-design.readthedocs.io/en/pydata-theme/",
|
|
162
|
+
null
|
|
163
|
+
],
|
|
150
164
|
"sphinx-gallery": ["https://sphinx-gallery.github.io/stable/", null],
|
|
165
|
+
"sphinx-material": ["https://bashtage.github.io/sphinx-material/", null],
|
|
166
|
+
"sphinx-togglebutton": [
|
|
167
|
+
"https://sphinx-togglebutton.readthedocs.io/en/latest/",
|
|
168
|
+
null
|
|
169
|
+
],
|
|
151
170
|
"sphinx_automodapi": [
|
|
152
|
-
"https://sphinx-automodapi.readthedocs.io/en/stable",
|
|
171
|
+
"https://sphinx-automodapi.readthedocs.io/en/stable/",
|
|
153
172
|
null
|
|
154
173
|
],
|
|
155
174
|
"sqlalchemy": ["https://docs.sqlalchemy.org/en/latest/", null],
|
|
@@ -159,15 +178,16 @@
|
|
|
159
178
|
"torch": ["https://pytorch.org/docs/main/", null],
|
|
160
179
|
"tornado": ["https://www.tornadoweb.org/en/stable/", null],
|
|
161
180
|
"tox": ["https://tox.wiki/en/stable/", null],
|
|
162
|
-
"traitlets": ["https://traitlets.readthedocs.io/en/latest", null],
|
|
163
|
-
"twine": ["https://twine.readthedocs.io/en/stable", null],
|
|
164
|
-
"typing": ["https://typing.readthedocs.io/en/latest", null],
|
|
165
|
-
"
|
|
181
|
+
"traitlets": ["https://traitlets.readthedocs.io/en/latest/", null],
|
|
182
|
+
"twine": ["https://twine.readthedocs.io/en/stable/", null],
|
|
183
|
+
"typing": ["https://typing.readthedocs.io/en/latest/", null],
|
|
184
|
+
"typing_extensions": ["https://typing-extensions.readthedocs.io/en/stable/", null],
|
|
185
|
+
"ubelt": ["https://ubelt.readthedocs.io/en/latest/", null],
|
|
166
186
|
"urwid": ["https://urwid.org/", null],
|
|
167
187
|
"virtualenv": ["https://virtualenv.pypa.io/en/stable/", null],
|
|
168
188
|
"writethedocs": ["https://www.writethedocs.org/", null],
|
|
169
189
|
"xarray": ["https://docs.xarray.dev/en/stable/", null],
|
|
170
|
-
"xdoctest": ["https://xdoctest.readthedocs.io/en/latest", null],
|
|
190
|
+
"xdoctest": ["https://xdoctest.readthedocs.io/en/latest/", null],
|
|
171
191
|
"z2jh": ["https://z2jh.jupyter.org/en/latest/", null],
|
|
172
|
-
"zarr": ["https://zarr.readthedocs.io/en/latest", null]
|
|
192
|
+
"zarr": ["https://zarr.readthedocs.io/en/latest/", null]
|
|
173
193
|
}
|
|
File without changes
|
{intersphinx_registry-0.2410.14 → intersphinx_registry-0.2411.13}/intersphinx_registry/py.typed
RENAMED
|
File without changes
|
|
File without changes
|