intersphinx-registry 0.2405.27__py2.py3-none-any.whl → 0.2410.1__py2.py3-none-any.whl
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/__init__.py +2 -1
- intersphinx_registry/lookup.py +20 -0
- intersphinx_registry/registry.json +13 -8
- {intersphinx_registry-0.2405.27.dist-info → intersphinx_registry-0.2410.1.dist-info}/METADATA +5 -3
- intersphinx_registry-0.2410.1.dist-info/RECORD +8 -0
- intersphinx_registry-0.2405.27.dist-info/RECORD +0 -7
- {intersphinx_registry-0.2405.27.dist-info → intersphinx_registry-0.2410.1.dist-info}/LICENSE +0 -0
- {intersphinx_registry-0.2405.27.dist-info → intersphinx_registry-0.2410.1.dist-info}/WHEEL +0 -0
intersphinx_registry/__init__.py
CHANGED
|
@@ -10,7 +10,8 @@ from typing import Dict, Tuple, Set, Optional, cast
|
|
|
10
10
|
|
|
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.1"
|
|
14
15
|
|
|
15
16
|
registry_file = Path(__file__).parent / "registry.json"
|
|
16
17
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
|
|
3
|
+
from intersphinx_registry import get_intersphinx_mapping
|
|
4
|
+
import logging as _logging
|
|
5
|
+
from sphinx.ext.intersphinx import inspect_main
|
|
6
|
+
|
|
7
|
+
if len(sys.argv) != 2:
|
|
8
|
+
sys.exit("Usage: python -m intersphinx_registry.lookup <package>")
|
|
9
|
+
|
|
10
|
+
packages = set([sys.argv[1]])
|
|
11
|
+
|
|
12
|
+
# there will be only one url
|
|
13
|
+
urls = [
|
|
14
|
+
u[0] + (u[1] if u[1] else "objects.inv")
|
|
15
|
+
for u in get_intersphinx_mapping(packages=packages).values()
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
_logging.basicConfig()
|
|
20
|
+
raise SystemExit(inspect_main(urls))
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"pillow": ["https://pillow.readthedocs.io/en/stable/", null],
|
|
3
|
-
"pypug": ["https://packaging.python.org/en/latest/", null],
|
|
4
2
|
"anndata": ["https://anndata.readthedocs.io/en/stable/", null],
|
|
5
3
|
"asdf-astropy": ["https://asdf-astropy.readthedocs.io/en/latest/", null],
|
|
6
4
|
"astropy-dev": ["https://docs.astropy.org/en/latest/", null],
|
|
@@ -27,8 +25,8 @@
|
|
|
27
25
|
"distlib": ["https://distlib.readthedocs.io/en/latest/", null],
|
|
28
26
|
"distributed": ["https://distributed.dask.org/en/stable/", null],
|
|
29
27
|
"django": [
|
|
30
|
-
"https://docs.djangoproject.com/en/
|
|
31
|
-
"https://docs.djangoproject.com/en/
|
|
28
|
+
"https://docs.djangoproject.com/en/stable/",
|
|
29
|
+
"https://docs.djangoproject.com/en/stable/_objects/"
|
|
32
30
|
],
|
|
33
31
|
"dlpack": ["https://dmlc.github.io/dlpack/latest/", null],
|
|
34
32
|
"flax": ["https://flax.readthedocs.io/en/latest/", null],
|
|
@@ -48,7 +46,7 @@
|
|
|
48
46
|
"ipywidgets": ["https://ipywidgets.readthedocs.io/en/latest/", null],
|
|
49
47
|
"jax": ["https://jax.readthedocs.io/en/latest/", null],
|
|
50
48
|
"jedi": ["https://jedi.readthedocs.io/en/latest/", null],
|
|
51
|
-
"jinja": ["
|
|
49
|
+
"jinja": ["https://jinja.palletsprojects.com/", null],
|
|
52
50
|
"joblib": ["https://joblib.readthedocs.io/en/latest/", null],
|
|
53
51
|
"jupyter": ["https://docs.jupyter.org/en/latest/", null],
|
|
54
52
|
"jupyter-server": ["https://jupyter-server.readthedocs.io/en/stable/", null],
|
|
@@ -67,6 +65,8 @@
|
|
|
67
65
|
"matplotlib": ["https://matplotlib.org/stable/", null],
|
|
68
66
|
"meson-python": ["https://meson-python.readthedocs.io/en/stable/", null],
|
|
69
67
|
"mne": ["https://mne.tools/stable/", null],
|
|
68
|
+
"mne_icalabel": ["https://mne.tools/mne-icalabel/stable/", null],
|
|
69
|
+
"mne_lsl": ["https://mne.tools/mne-lsl/stable/", null],
|
|
70
70
|
"monkeytype": ["https://monkeytype.readthedocs.io/en/latest/", null],
|
|
71
71
|
"mpmath": ["https://mpmath.org/doc/current/", null],
|
|
72
72
|
"myst-nb": ["https://myst-nb.readthedocs.io/en/v0.12.3/", null],
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
"pandas-gbq": ["https://pandas-gbq.readthedocs.io/en/latest/", null],
|
|
97
97
|
"parso": ["https://parso.readthedocs.io/en/latest/", null],
|
|
98
98
|
"patsy": ["https://patsy.readthedocs.io/en/latest/", null],
|
|
99
|
+
"pillow": ["https://pillow.readthedocs.io/en/stable/", null],
|
|
99
100
|
"pip": ["https://pip.pypa.io/en/latest/", null],
|
|
100
101
|
"pipenv": ["https://pipenv.pypa.io/en/latest/", null],
|
|
101
102
|
"piwheels": ["https://piwheels.readthedocs.io/en/latest/", null],
|
|
@@ -122,7 +123,7 @@
|
|
|
122
123
|
"python": ["https://docs.python.org/3/", null],
|
|
123
124
|
"python-guide": ["https://docs.python-guide.org/", null],
|
|
124
125
|
"pytorch_lightning": ["https://lightning.ai/docs/pytorch/stable/", null],
|
|
125
|
-
"pyvista": ["https://docs.pyvista.org/
|
|
126
|
+
"pyvista": ["https://docs.pyvista.org/", null],
|
|
126
127
|
"qiskit": ["https://docs.quantum.ibm.com/api/qiskit/", null],
|
|
127
128
|
"qtconsole": ["https://jupyter.org/qtconsole/dev/", null],
|
|
128
129
|
"readthedocs": ["https://docs.readthedocs.io/en/stable/", null],
|
|
@@ -141,16 +142,20 @@
|
|
|
141
142
|
"six": ["https://six.readthedocs.io/", null],
|
|
142
143
|
"skimage": ["https://scikit-image.org/docs/stable/", null],
|
|
143
144
|
"sklearn": ["https://scikit-learn.org/stable/", null],
|
|
145
|
+
"sounddevice": ["https://python-sounddevice.readthedocs.io/", null],
|
|
144
146
|
"spack": ["https://spack.readthedocs.io/en/latest/", null],
|
|
145
147
|
"sparse": ["https://sparse.pydata.org/en/latest/", null],
|
|
146
148
|
"sphinx": ["https://www.sphinx-doc.org/en/master/", null],
|
|
147
149
|
"sphinx-gallery": ["https://sphinx-gallery.github.io/stable/", null],
|
|
148
|
-
"sphinx_automodapi": [
|
|
150
|
+
"sphinx_automodapi": [
|
|
151
|
+
"https://sphinx-automodapi.readthedocs.io/en/stable/",
|
|
152
|
+
null
|
|
153
|
+
],
|
|
149
154
|
"sqlalchemy": ["https://docs.sqlalchemy.org/en/latest/", null],
|
|
150
155
|
"statsmodels": ["https://www.statsmodels.org/stable/", null],
|
|
151
156
|
"sympy": ["https://docs.sympy.org/latest/", null],
|
|
152
157
|
"tljh": ["https://tljh.jupyter.org/en/latest/", null],
|
|
153
|
-
"torch": ["https://pytorch.org/docs/
|
|
158
|
+
"torch": ["https://pytorch.org/docs/main/", null],
|
|
154
159
|
"tornado": ["https://www.tornadoweb.org/en/stable/", null],
|
|
155
160
|
"tox": ["https://tox.wiki/en/stable/", null],
|
|
156
161
|
"traitlets": ["https://traitlets.readthedocs.io/en/latest/", null],
|
{intersphinx_registry-0.2405.27.dist-info → intersphinx_registry-0.2410.1.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: intersphinx_registry
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2410.1
|
|
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
|
|
@@ -8,7 +8,9 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
8
8
|
Requires-Dist: pytest>=7.0 ; extra == "tests"
|
|
9
9
|
Requires-Dist: pytest-xdist ; extra == "tests"
|
|
10
10
|
Requires-Dist: requests ; extra == "tests"
|
|
11
|
-
|
|
11
|
+
Requires-Dist: mypy ; extra == "tests"
|
|
12
|
+
Requires-Dist: types-requests ; extra == "tests"
|
|
13
|
+
Project-URL: Home, https://github.com/Quansight-labs/intersphinx_registry
|
|
12
14
|
Provides-Extra: tests
|
|
13
15
|
|
|
14
16
|
# Intersphinx Registry
|
|
@@ -22,7 +24,7 @@ from intersphinx_registry import get_intersphinx_mapping
|
|
|
22
24
|
|
|
23
25
|
# ...
|
|
24
26
|
intersphinx_mapping = get_intersphinx_mapping(
|
|
25
|
-
|
|
27
|
+
packages={"ipython", "matplotlib", "pandas", "python"}
|
|
26
28
|
)
|
|
27
29
|
intersphinx_mapping.update({
|
|
28
30
|
'overwrite': ('<url>', None),
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
intersphinx_registry/__init__.py,sha256=rXofM6AY0wysQXAeURJe90nJQVhLdDsNRmjJlLde2tA,1762
|
|
2
|
+
intersphinx_registry/lookup.py,sha256=mc_KD3Iy6kgX4S53bbetm7OuGcWHIlkAu1ogQnpu17w,483
|
|
3
|
+
intersphinx_registry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
intersphinx_registry/registry.json,sha256=5ctlnXx48QPOZPvAykrLCjCMowp3umNh3heJe3nUGqA,9927
|
|
5
|
+
intersphinx_registry-0.2410.1.dist-info/LICENSE,sha256=j98x_c52nvqkLlr-U8tUaubJG3IBCIFEInYE4L_Yqqo,1086
|
|
6
|
+
intersphinx_registry-0.2410.1.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
|
|
7
|
+
intersphinx_registry-0.2410.1.dist-info/METADATA,sha256=o7txpFmx8U-vjj42HVvJByzWIyFO-TM1_ZBkiHnyYRM,1658
|
|
8
|
+
intersphinx_registry-0.2410.1.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
intersphinx_registry/__init__.py,sha256=eAB_hqzhnyj06um4lBwGMDNsL-K935ehzwuz9j5qgeI,1705
|
|
2
|
-
intersphinx_registry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
intersphinx_registry/registry.json,sha256=4sBhqiMSWXN65Zta-CK1TqFsEOHG3ylxQpZIMstEZbk,9785
|
|
4
|
-
intersphinx_registry-0.2405.27.dist-info/LICENSE,sha256=j98x_c52nvqkLlr-U8tUaubJG3IBCIFEInYE4L_Yqqo,1086
|
|
5
|
-
intersphinx_registry-0.2405.27.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
|
|
6
|
-
intersphinx_registry-0.2405.27.dist-info/METADATA,sha256=4iFBnKcB--j8tXF9h5sclfiH9DgemekI3i8yTKI9bpQ,1560
|
|
7
|
-
intersphinx_registry-0.2405.27.dist-info/RECORD,,
|
{intersphinx_registry-0.2405.27.dist-info → intersphinx_registry-0.2410.1.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|