loomweave-plugin-python 1.1.0__tar.gz → 1.2.1__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.
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/PKG-INFO +1 -1
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/plugin.toml +1 -1
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/pyproject.toml +1 -1
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/__init__.py +1 -1
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_package.py +2 -2
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_server.py +1 -1
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/uv.lock +1 -1
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/.gitignore +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/README.md +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/__main__.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/call_resolver.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/entity_id.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/extractor.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/py.typed +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/pyright_session.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/qualname.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/reference_resolver.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/server.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/stdout_guard.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/wardline_descriptor.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/__init__.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_dogfood_uniqueness.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_entity_id.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_extractor.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_pyright_session.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_qualname.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_round_trip.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_stdout_guard.py +0 -0
- {loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_wardline_descriptor.py +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[plugin]
|
|
2
2
|
name = "loomweave-plugin-python"
|
|
3
3
|
plugin_id = "python"
|
|
4
|
-
version = "1.1
|
|
4
|
+
version = "1.2.1"
|
|
5
5
|
protocol_version = "1.0"
|
|
6
6
|
# Bare basename per ADR-021 §Layer 1 + WP2 scrub commit eb0a41d — the host
|
|
7
7
|
# refuses manifests whose `executable` carries any path component.
|
|
@@ -17,7 +17,7 @@ def _read_toml(path: Path) -> dict[str, Any]:
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
def test_package_version_matches_pyproject() -> None:
|
|
20
|
-
assert loomweave_plugin_python.__version__ == "1.1
|
|
20
|
+
assert loomweave_plugin_python.__version__ == "1.2.1"
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
def test_plugin_version_lockstep_across_pyproject_manifest_and_module() -> None:
|
|
@@ -42,7 +42,7 @@ def test_plugin_version_lockstep_across_pyproject_manifest_and_module() -> None:
|
|
|
42
42
|
def test_manifest_declares_current_v1_ontology_only() -> None:
|
|
43
43
|
manifest = _read_toml(_PLUGIN_ROOT / "plugin.toml")
|
|
44
44
|
|
|
45
|
-
assert manifest["plugin"]["version"] == "1.1
|
|
45
|
+
assert manifest["plugin"]["version"] == "1.2.1"
|
|
46
46
|
assert manifest["capabilities"]["runtime"]["wardline_aware"] is True
|
|
47
47
|
assert manifest["integrations"]["wardline"]["expected_descriptor_version"] == (
|
|
48
48
|
EXPECTED_DESCRIPTOR_VERSION
|
|
@@ -86,7 +86,7 @@ def test_initialize_roundtrip() -> None:
|
|
|
86
86
|
assert response["id"] == 1
|
|
87
87
|
result = response["result"]
|
|
88
88
|
assert result["name"] == "loomweave-plugin-python"
|
|
89
|
-
assert result["version"] == "1.1
|
|
89
|
+
assert result["version"] == "1.2.1"
|
|
90
90
|
assert result["ontology_version"] == "0.8.0"
|
|
91
91
|
assert set(result["capabilities"]) == {"wardline"}
|
|
92
92
|
assert result["capabilities"]["wardline"]["status"] in {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/py.typed
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_dogfood_uniqueness.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_pyright_session.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{loomweave_plugin_python-1.1.0 → loomweave_plugin_python-1.2.1}/tests/test_wardline_descriptor.py
RENAMED
|
File without changes
|