intersphinx-registry 0.2405.27__py2.py3-none-any.whl → 0.2406.4__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 +1 -1
- intersphinx_registry/lookup.py +20 -0
- intersphinx_registry/registry.json +8 -3
- {intersphinx_registry-0.2405.27.dist-info → intersphinx_registry-0.2406.4.dist-info}/METADATA +5 -3
- intersphinx_registry-0.2406.4.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.2406.4.dist-info}/LICENSE +0 -0
- {intersphinx_registry-0.2405.27.dist-info → intersphinx_registry-0.2406.4.dist-info}/WHEEL +0 -0
intersphinx_registry/__init__.py
CHANGED
|
@@ -10,7 +10,7 @@ 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
|
-
__version__ = "0.
|
|
13
|
+
__version__ = "0.2406.04"
|
|
14
14
|
|
|
15
15
|
registry_file = Path(__file__).parent / "registry.json"
|
|
16
16
|
|
|
@@ -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))
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"distlib": ["https://distlib.readthedocs.io/en/latest/", null],
|
|
28
28
|
"distributed": ["https://distributed.dask.org/en/stable/", null],
|
|
29
29
|
"django": [
|
|
30
|
-
"https://docs.djangoproject.com/en/
|
|
31
|
-
"https://docs.djangoproject.com/en/
|
|
30
|
+
"https://docs.djangoproject.com/en/stable/",
|
|
31
|
+
"https://docs.djangoproject.com/en/stable/_objects/"
|
|
32
32
|
],
|
|
33
33
|
"dlpack": ["https://dmlc.github.io/dlpack/latest/", null],
|
|
34
34
|
"flax": ["https://flax.readthedocs.io/en/latest/", null],
|
|
@@ -67,6 +67,8 @@
|
|
|
67
67
|
"matplotlib": ["https://matplotlib.org/stable/", null],
|
|
68
68
|
"meson-python": ["https://meson-python.readthedocs.io/en/stable/", null],
|
|
69
69
|
"mne": ["https://mne.tools/stable/", null],
|
|
70
|
+
"mne_lsl": ["https://mne.tools/mne-lsl/stable/", null],
|
|
71
|
+
"mne_icalabel": ["https://mne.tools/mne-icalabel/stable/", null],
|
|
70
72
|
"monkeytype": ["https://monkeytype.readthedocs.io/en/latest/", null],
|
|
71
73
|
"mpmath": ["https://mpmath.org/doc/current/", null],
|
|
72
74
|
"myst-nb": ["https://myst-nb.readthedocs.io/en/v0.12.3/", null],
|
|
@@ -145,7 +147,10 @@
|
|
|
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],
|
{intersphinx_registry-0.2405.27.dist-info → intersphinx_registry-0.2406.4.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.2406.4
|
|
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=kVzWV04w_Nz1hOLOmOcqoCaM9uABBwobgjQSSk1REjo,1705
|
|
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=6Pizi7Lf_Fo1X5_OS6ruJz_WJi544C1iAuUStQr_RsU,9929
|
|
5
|
+
intersphinx_registry-0.2406.4.dist-info/LICENSE,sha256=j98x_c52nvqkLlr-U8tUaubJG3IBCIFEInYE4L_Yqqo,1086
|
|
6
|
+
intersphinx_registry-0.2406.4.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
|
|
7
|
+
intersphinx_registry-0.2406.4.dist-info/METADATA,sha256=rdkIVPcRpTNTFw9oIz4yWgQfOq9vPFL8--ZdUr5y0kg,1658
|
|
8
|
+
intersphinx_registry-0.2406.4.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.2406.4.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|