intersphinx-registry 0.2410.14__tar.gz → 0.2411.12__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.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: intersphinx_registry
3
- Version: 0.2410.14
3
+ Version: 0.2411.12
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
 
@@ -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.2410.14"
14
+ __version__ = "0.2411.12"
15
15
 
16
16
  registry_file = Path(__file__).parent / "registry.json"
17
17
 
@@ -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] + (u[1] if u[1] else "objects.inv")
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
 
@@ -1,124 +1,125 @@
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
- "bhub": ["https://binderhub.readthedocs.io/en/latest", null],
8
+ "bhub": ["https://binderhub.readthedocs.io/en/latest/", null],
9
9
  "bokeh": ["https://docs.bokeh.org/en/latest/", null],
10
- "boltons": ["https://boltons.readthedocs.io/en/latest", null],
10
+ "boltons": ["https://boltons.readthedocs.io/en/latest/", null],
11
11
  "bottle": ["https://bottlepy.org/docs/dev/", null],
12
12
  "build": ["https://build.pypa.io/en/latest/", null],
13
13
  "cartopy": ["https://scitools.org.uk/cartopy/docs/latest/", null],
14
- "cffi": ["https://cffi.readthedocs.io/en/latest", null],
14
+ "cffi": ["https://cffi.readthedocs.io/en/latest/", null],
15
15
  "click": ["https://click.palletsprojects.com/", null],
16
16
  "conda": ["https://conda.io/en/latest/", null],
17
17
  "cycler": ["https://matplotlib.org/cycler/", null],
18
18
  "cython": ["https://docs.cython.org/en/latest/", null],
19
19
  "dask": ["https://docs.dask.org/en/latest/", null],
20
- "dateutil": ["https://dateutil.readthedocs.io/en/latest", null],
20
+ "dateutil": ["https://dateutil.readthedocs.io/en/latest/", null],
21
21
  "devguide": ["https://devguide.python.org/", null],
22
22
  "devpi": ["https://devpi.net/docs/devpi/devpi/latest/+doc/", null],
23
- "dh-virtualenv": ["https://dh-virtualenv.readthedocs.io/en/latest", null],
23
+ "dh-virtualenv": ["https://dh-virtualenv.readthedocs.io/en/latest/", null],
24
24
  "dipy": ["https://docs.dipy.org/stable/", null],
25
- "distlib": ["https://distlib.readthedocs.io/en/latest", null],
25
+ "distlib": ["https://distlib.readthedocs.io/en/latest/", null],
26
26
  "distributed": ["https://distributed.dask.org/en/stable/", null],
27
27
  "django": [
28
28
  "https://docs.djangoproject.com/en/stable/",
29
29
  "https://docs.djangoproject.com/en/stable/_objects/"
30
30
  ],
31
31
  "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],
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
35
  "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],
36
+ "hub": ["https://jupyterhub.readthedocs.io/en/latest/", null],
37
+ "imageio": ["https://imageio.readthedocs.io/en/stable/", null],
38
38
  "importlib-resources": [
39
- "https://importlib-resources.readthedocs.io/en/latest",
39
+ "https://importlib-resources.readthedocs.io/en/latest/",
40
40
  null
41
41
  ],
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],
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],
49
49
  "jinja": ["https://jinja.palletsprojects.com/", null],
50
- "joblib": ["https://joblib.readthedocs.io/en/latest", null],
50
+ "joblib": ["https://joblib.readthedocs.io/en/latest/", null],
51
51
  "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],
52
+ "jupyter-server": ["https://jupyter-server.readthedocs.io/en/stable/", null],
53
+ "jupyter_core": ["https://jupyter-core.readthedocs.io/en/stable/", null],
54
54
  "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],
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],
62
62
  "lxml": ["https://lxml.de/apidoc/", null],
63
63
  "magicgui": ["https://pyapp-kit.github.io/magicgui/", null],
64
- "markdown_it": ["https://markdown-it-py.readthedocs.io/en/latest", null],
64
+ "markdown_it": ["https://markdown-it-py.readthedocs.io/en/latest/", null],
65
65
  "matplotlib": ["https://matplotlib.org/stable/", null],
66
- "meson-python": ["https://meson-python.readthedocs.io/en/stable", null],
66
+ "meson-python": ["https://meson-python.readthedocs.io/en/stable/", null],
67
67
  "mne": ["https://mne.tools/stable/", null],
68
68
  "mne_bids": ["https://mne.tools/mne-bids/stable/", null],
69
69
  "mne_icalabel": ["https://mne.tools/mne-icalabel/stable/", null],
70
70
  "mne_lsl": ["https://mne.tools/mne-lsl/stable/", null],
71
- "monkeytype": ["https://monkeytype.readthedocs.io/en/latest", null],
71
+ "monkeytype": ["https://monkeytype.readthedocs.io/en/latest/", null],
72
72
  "mpmath": ["https://mpmath.org/doc/current/", null],
73
- "myst-nb": ["https://myst-nb.readthedocs.io/en/v0.12.3", null],
74
- "myst-parser": ["https://myst-parser.readthedocs.io/en/v0.15.1", null],
73
+ "myst-nb": ["https://myst-nb.readthedocs.io/en/latest/", null],
74
+ "myst-parser": ["https://myst-parser.readthedocs.io/en/latest/", null],
75
75
  "napari_plugin_engine": [
76
- "https://napari-plugin-engine.readthedocs.io/en/latest",
76
+ "https://napari-plugin-engine.readthedocs.io/en/latest/",
77
77
  null
78
78
  ],
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],
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
82
  "nbsphinx": ["https://nbsphinx.readthedocs.io/", null],
83
- "ndsampler": ["https://ndsampler.readthedocs.io/en/latest", null],
83
+ "ndsampler": ["https://ndsampler.readthedocs.io/en/latest/", null],
84
84
  "neps": ["https://numpy.org/neps/", null],
85
85
  "networkx": ["https://networkx.org/documentation/stable/", null],
86
86
  "nibabel": ["https://nipy.org/nibabel/", null],
87
87
  "nilearn": ["https://nilearn.github.io/stable/", null],
88
- "notebook": ["https://jupyter-notebook.readthedocs.io/en/stable", null],
88
+ "notebook": ["https://jupyter-notebook.readthedocs.io/en/stable/", null],
89
89
  "nox": ["https://nox.thea.codes/en/latest/", null],
90
- "numba": ["https://numba.readthedocs.io/en/latest", null],
90
+ "numba": ["https://numba.readthedocs.io/en/latest/", null],
91
91
  "numpy": ["https://numpy.org/doc/stable/", null],
92
92
  "numpy-tutorials": ["https://numpy.org/numpy-tutorials/", null],
93
- "numpydoc": ["https://numpydoc.readthedocs.io/en/latest", null],
93
+ "numpydoc": ["https://numpydoc.readthedocs.io/en/latest/", null],
94
94
  "nx-guides": ["https://networkx.org/nx-guides/", null],
95
95
  "openstack": ["https://docs.openstack.org/glance/latest/", null],
96
96
  "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],
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],
101
101
  "pip": ["https://pip.pypa.io/en/latest/", null],
102
102
  "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],
103
+ "piwheels": ["https://piwheels.readthedocs.io/en/latest/", null],
104
+ "pluggy": ["https://pluggy.readthedocs.io/en/stable/", null],
105
105
  "poliastro": ["https://docs.poliastro.space/en/stable/", null],
106
106
  "prompt_toolkit": [
107
- "https://python-prompt-toolkit.readthedocs.io/en/stable",
107
+ "https://python-prompt-toolkit.readthedocs.io/en/stable/",
108
108
  null
109
109
  ],
110
- "py": ["https://pylib.readthedocs.io/en/latest", null],
110
+ "py": ["https://pylib.readthedocs.io/en/latest/", null],
111
111
  "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],
112
+ "pybind11": ["https://pybind11.readthedocs.io/en/stable/", null],
113
+ "pyerfa": ["https://pyerfa.readthedocs.io/en/stable/", null],
114
114
  "pygraphviz": ["https://pygraphviz.github.io/documentation/stable/", null],
115
115
  "pymde": ["https://pymde.org/", null],
116
- "pymongo": ["https://pymongo.readthedocs.io/en/stable", null],
117
- "pynsist": ["https://pynsist.readthedocs.io/en/latest", null],
116
+ "pymongo": ["https://pymongo.readthedocs.io/en/stable/", null],
117
+ "pynsist": ["https://pynsist.readthedocs.io/en/latest/", null],
118
+ "pyodide": ["https://pyodide.org/en/stable/", null],
118
119
  "pypa": ["https://www.pypa.io/en/latest/", null],
119
120
  "pypug": ["https://packaging.python.org/en/latest/", null],
120
121
  "pypy": ["https://doc.pypy.org/en/latest/", null],
121
- "pyqtgraph": ["https://pyqtgraph.readthedocs.io/en/latest", null],
122
+ "pyqtgraph": ["https://pyqtgraph.readthedocs.io/en/latest/", null],
122
123
  "pyro": ["https://docs.pyro.ai/en/stable/", null],
123
124
  "pytest": ["https://pytest.org/en/stable/", null],
124
125
  "python": ["https://docs.python.org/3/", null],
@@ -127,29 +128,42 @@
127
128
  "pyvista": ["https://docs.pyvista.org/", null],
128
129
  "qiskit": ["https://docs.quantum.ibm.com/api/qiskit/", null],
129
130
  "qtconsole": ["https://jupyter.org/qtconsole/dev/", null],
130
- "readthedocs": ["https://docs.readthedocs.io/en/stable", null],
131
+ "readthedocs": ["https://docs.readthedocs.io/en/stable/", null],
131
132
  "requests": ["https://docs.python-requests.org/en/latest/", null],
132
133
  "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],
134
+ "rst-to-myst": ["https://rst-to-myst.readthedocs.io/en/stable/", null],
135
+ "rtd": ["https://docs.readthedocs.io/en/stable/", null],
136
+ "rtd-dev": ["https://dev.readthedocs.io/en/latest/", null],
137
+ "scanpy": ["https://scanpy.readthedocs.io/en/stable/", null],
137
138
  "scipy": ["https://docs.scipy.org/doc/scipy/", null],
138
139
  "scipy-lecture-notes": ["https://scipy-lectures.org/", null],
139
- "scriptconfig": ["https://scriptconfig.readthedocs.io/en/latest", null],
140
+ "scriptconfig": ["https://scriptconfig.readthedocs.io/en/latest/", null],
140
141
  "seaborn": ["https://seaborn.pydata.org/", null],
141
- "server": ["https://jupyter-server.readthedocs.io/en/stable", null],
142
+ "server": ["https://jupyter-server.readthedocs.io/en/stable/", null],
142
143
  "setuptools": ["https://setuptools.pypa.io/en/stable/", null],
143
144
  "six": ["https://six.readthedocs.io/", null],
144
145
  "skimage": ["https://scikit-image.org/docs/stable/", null],
145
146
  "sklearn": ["https://scikit-learn.org/stable/", null],
146
147
  "sounddevice": ["https://python-sounddevice.readthedocs.io/", null],
147
- "spack": ["https://spack.readthedocs.io/en/latest", null],
148
+ "spack": ["https://spack.readthedocs.io/en/latest/", null],
148
149
  "sparse": ["https://sparse.pydata.org/en/latest/", null],
149
150
  "sphinx": ["https://www.sphinx-doc.org/en/master/", null],
151
+ "sphinx-copybutton": [
152
+ "https://sphinx-copybutton.readthedocs.io/en/latest/",
153
+ null
154
+ ],
155
+ "sphinx-design": [
156
+ "https://sphinx-design.readthedocs.io/en/pydata-theme/",
157
+ null
158
+ ],
150
159
  "sphinx-gallery": ["https://sphinx-gallery.github.io/stable/", null],
160
+ "sphinx-material": ["https://bashtage.github.io/sphinx-material/", null],
161
+ "sphinx-togglebutton": [
162
+ "https://sphinx-togglebutton.readthedocs.io/en/latest/",
163
+ null
164
+ ],
151
165
  "sphinx_automodapi": [
152
- "https://sphinx-automodapi.readthedocs.io/en/stable",
166
+ "https://sphinx-automodapi.readthedocs.io/en/stable/",
153
167
  null
154
168
  ],
155
169
  "sqlalchemy": ["https://docs.sqlalchemy.org/en/latest/", null],
@@ -159,15 +173,15 @@
159
173
  "torch": ["https://pytorch.org/docs/main/", null],
160
174
  "tornado": ["https://www.tornadoweb.org/en/stable/", null],
161
175
  "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
- "ubelt": ["https://ubelt.readthedocs.io/en/latest", null],
176
+ "traitlets": ["https://traitlets.readthedocs.io/en/latest/", null],
177
+ "twine": ["https://twine.readthedocs.io/en/stable/", null],
178
+ "typing": ["https://typing.readthedocs.io/en/latest/", null],
179
+ "ubelt": ["https://ubelt.readthedocs.io/en/latest/", null],
166
180
  "urwid": ["https://urwid.org/", null],
167
181
  "virtualenv": ["https://virtualenv.pypa.io/en/stable/", null],
168
182
  "writethedocs": ["https://www.writethedocs.org/", null],
169
183
  "xarray": ["https://docs.xarray.dev/en/stable/", null],
170
- "xdoctest": ["https://xdoctest.readthedocs.io/en/latest", null],
184
+ "xdoctest": ["https://xdoctest.readthedocs.io/en/latest/", null],
171
185
  "z2jh": ["https://z2jh.jupyter.org/en/latest/", null],
172
- "zarr": ["https://zarr.readthedocs.io/en/latest", null]
186
+ "zarr": ["https://zarr.readthedocs.io/en/latest/", null]
173
187
  }