intersphinx-registry 0.2405.27__tar.gz → 0.2406.4__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.2405.27 → intersphinx_registry-0.2406.4}/PKG-INFO +5 -3
- {intersphinx_registry-0.2405.27 → intersphinx_registry-0.2406.4}/README.md +1 -1
- {intersphinx_registry-0.2405.27 → intersphinx_registry-0.2406.4}/intersphinx_registry/__init__.py +1 -1
- intersphinx_registry-0.2406.4/intersphinx_registry/lookup.py +20 -0
- {intersphinx_registry-0.2405.27 → intersphinx_registry-0.2406.4}/intersphinx_registry/registry.json +8 -3
- intersphinx_registry-0.2406.4/pyproject.toml +31 -0
- intersphinx_registry-0.2405.27/pyproject.toml +0 -22
- {intersphinx_registry-0.2405.27 → intersphinx_registry-0.2406.4}/LICENSE +0 -0
- {intersphinx_registry-0.2405.27 → intersphinx_registry-0.2406.4}/intersphinx_registry/py.typed +0 -0
|
@@ -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),
|
|
@@ -9,7 +9,7 @@ from intersphinx_registry import get_intersphinx_mapping
|
|
|
9
9
|
|
|
10
10
|
# ...
|
|
11
11
|
intersphinx_mapping = get_intersphinx_mapping(
|
|
12
|
-
|
|
12
|
+
packages={"ipython", "matplotlib", "pandas", "python"}
|
|
13
13
|
)
|
|
14
14
|
intersphinx_mapping.update({
|
|
15
15
|
'overwrite': ('<url>', None),
|
{intersphinx_registry-0.2405.27 → intersphinx_registry-0.2406.4}/intersphinx_registry/__init__.py
RENAMED
|
@@ -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))
|
{intersphinx_registry-0.2405.27 → intersphinx_registry-0.2406.4}/intersphinx_registry/registry.json
RENAMED
|
@@ -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],
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["flit_core >=3.2,<4"]
|
|
3
|
+
build-backend = "flit_core.buildapi"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "intersphinx_registry"
|
|
7
|
+
authors = [{name = "Matthias Bussonnier", email = "bussonniermatthias@gmail.com"}]
|
|
8
|
+
license = {file = "LICENSE"}
|
|
9
|
+
classifiers = ["License :: OSI Approved :: MIT License"]
|
|
10
|
+
dynamic = ["version", "description"]
|
|
11
|
+
readme = "README.md"
|
|
12
|
+
|
|
13
|
+
[project.optional-dependencies]
|
|
14
|
+
tests = ["pytest>=7.0", "pytest-xdist", "requests", "mypy", "types-requests"]
|
|
15
|
+
|
|
16
|
+
[tool.pytest.ini_options]
|
|
17
|
+
minversion = "7.0"
|
|
18
|
+
# -n auto:
|
|
19
|
+
# run @parametrize tests in parallel as some use requests.
|
|
20
|
+
# requires ptest x-dist
|
|
21
|
+
addopts = ["-n","auto", "--strict-config", "--strict-markers", "-ra"]
|
|
22
|
+
filterwarnings = ["error"]
|
|
23
|
+
log_cli_level = "INFO"
|
|
24
|
+
testpaths = ["tests"]
|
|
25
|
+
xfail_strict = true
|
|
26
|
+
|
|
27
|
+
[tool.mypy]
|
|
28
|
+
files = ["intersphinx_registry", "tests"]
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Home = "https://github.com/Quansight-labs/intersphinx_registry"
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["flit_core >=3.2,<4"]
|
|
3
|
-
build-backend = "flit_core.buildapi"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "intersphinx_registry"
|
|
7
|
-
authors = [{name = "Matthias Bussonnier", email = "bussonniermatthias@gmail.com"}]
|
|
8
|
-
license = {file = "LICENSE"}
|
|
9
|
-
classifiers = ["License :: OSI Approved :: MIT License"]
|
|
10
|
-
dynamic = ["version", "description"]
|
|
11
|
-
readme = "README.md"
|
|
12
|
-
|
|
13
|
-
[project.optional-dependencies]
|
|
14
|
-
tests = ["pytest>=7.0", "pytest-xdist", "requests"]
|
|
15
|
-
|
|
16
|
-
[tool.pytest.ini_options]
|
|
17
|
-
minversion = "7.0"
|
|
18
|
-
# run @parametrize tests in parallel as some use requests.
|
|
19
|
-
addopts = "-n auto"
|
|
20
|
-
|
|
21
|
-
[project.urls]
|
|
22
|
-
Home = "https://github.com/Carreau/intersphinx_registry"
|
|
File without changes
|
{intersphinx_registry-0.2405.27 → intersphinx_registry-0.2406.4}/intersphinx_registry/py.typed
RENAMED
|
File without changes
|