intersphinx-registry 0.2410.4__py2.py3-none-any.whl → 0.2411.12__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 +2 -1
- intersphinx_registry/registry.json +16 -2
- {intersphinx_registry-0.2410.4.dist-info → intersphinx_registry-0.2411.12.dist-info}/METADATA +17 -2
- intersphinx_registry-0.2411.12.dist-info/RECORD +8 -0
- {intersphinx_registry-0.2410.4.dist-info → intersphinx_registry-0.2411.12.dist-info}/WHEEL +1 -1
- intersphinx_registry-0.2410.4.dist-info/RECORD +0 -8
- {intersphinx_registry-0.2410.4.dist-info → intersphinx_registry-0.2411.12.dist-info}/LICENSE +0 -0
intersphinx_registry/__init__.py
CHANGED
|
@@ -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.12"
|
|
15
15
|
|
|
16
16
|
registry_file = Path(__file__).parent / "registry.json"
|
|
17
17
|
|
intersphinx_registry/lookup.py
CHANGED
|
@@ -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
|
|
|
@@ -70,8 +70,8 @@
|
|
|
70
70
|
"mne_lsl": ["https://mne.tools/mne-lsl/stable/", null],
|
|
71
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/
|
|
74
|
-
"myst-parser": ["https://myst-parser.readthedocs.io/en/
|
|
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
76
|
"https://napari-plugin-engine.readthedocs.io/en/latest/",
|
|
77
77
|
null
|
|
@@ -115,6 +115,7 @@
|
|
|
115
115
|
"pymde": ["https://pymde.org/", null],
|
|
116
116
|
"pymongo": ["https://pymongo.readthedocs.io/en/stable/", null],
|
|
117
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],
|
|
@@ -147,7 +148,20 @@
|
|
|
147
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
166
|
"https://sphinx-automodapi.readthedocs.io/en/stable/",
|
|
153
167
|
null
|
{intersphinx_registry-0.2410.4.dist-info → intersphinx_registry-0.2411.12.dist-info}/METADATA
RENAMED
|
@@ -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.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
|
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
intersphinx_registry/__init__.py,sha256=Rf45fQe8NvvGsE0KIbKVbW5V8LCNOgZEjawfnmbRMNk,1763
|
|
2
|
+
intersphinx_registry/lookup.py,sha256=i5WhafTP97-Gv1n_RLpCZWb2HGIayockMHeg_IHxwBk,524
|
|
3
|
+
intersphinx_registry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
intersphinx_registry/registry.json,sha256=tmXWxaZ0tSg25YKUlYMR1e7j6gi0gK37pSyBhoUIWvQ,10412
|
|
5
|
+
intersphinx_registry-0.2411.12.dist-info/LICENSE,sha256=j98x_c52nvqkLlr-U8tUaubJG3IBCIFEInYE4L_Yqqo,1086
|
|
6
|
+
intersphinx_registry-0.2411.12.dist-info/WHEEL,sha256=ssQ84EZ5gH1pCOujd3iW7HClo_O_aDaClUbX4B8bjKY,100
|
|
7
|
+
intersphinx_registry-0.2411.12.dist-info/METADATA,sha256=h75oTlT6cx2UxDWrNQBM2slKQuCvmu1S21spgLCW2KE,2678
|
|
8
|
+
intersphinx_registry-0.2411.12.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
intersphinx_registry/__init__.py,sha256=5gW2gc1H9PrVjYkw391ZpGvPCUC11FdDsxnjoYXTgiA,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=ZmDxsMOIThRhHcAowhGFFp9v_r7ff80_zhXwYcFjm2I,9987
|
|
5
|
-
intersphinx_registry-0.2410.4.dist-info/LICENSE,sha256=j98x_c52nvqkLlr-U8tUaubJG3IBCIFEInYE4L_Yqqo,1086
|
|
6
|
-
intersphinx_registry-0.2410.4.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
|
|
7
|
-
intersphinx_registry-0.2410.4.dist-info/METADATA,sha256=jd1mLtSjcJR5wul-qTELaLyW4QZdvvUQ5y6mi6VD67s,1658
|
|
8
|
-
intersphinx_registry-0.2410.4.dist-info/RECORD,,
|
{intersphinx_registry-0.2410.4.dist-info → intersphinx_registry-0.2411.12.dist-info}/LICENSE
RENAMED
|
File without changes
|