loomweave-plugin-python 1.2.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.
Files changed (29) hide show
  1. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/PKG-INFO +1 -1
  2. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/plugin.toml +1 -1
  3. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/pyproject.toml +1 -1
  4. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/__init__.py +1 -1
  5. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_package.py +2 -2
  6. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_server.py +1 -1
  7. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/uv.lock +1 -1
  8. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/.gitignore +0 -0
  9. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/README.md +0 -0
  10. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/__main__.py +0 -0
  11. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/call_resolver.py +0 -0
  12. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/entity_id.py +0 -0
  13. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/extractor.py +0 -0
  14. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/py.typed +0 -0
  15. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/pyright_session.py +0 -0
  16. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/qualname.py +0 -0
  17. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/reference_resolver.py +0 -0
  18. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/server.py +0 -0
  19. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/stdout_guard.py +0 -0
  20. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/src/loomweave_plugin_python/wardline_descriptor.py +0 -0
  21. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/__init__.py +0 -0
  22. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_dogfood_uniqueness.py +0 -0
  23. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_entity_id.py +0 -0
  24. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_extractor.py +0 -0
  25. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_pyright_session.py +0 -0
  26. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_qualname.py +0 -0
  27. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_round_trip.py +0 -0
  28. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_stdout_guard.py +0 -0
  29. {loomweave_plugin_python-1.2.0 → loomweave_plugin_python-1.2.1}/tests/test_wardline_descriptor.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: loomweave-plugin-python
3
- Version: 1.2.0
3
+ Version: 1.2.1
4
4
  Summary: Loomweave Python language plugin — v1.0 release
5
5
  Author-email: John Morrissey <qacona@gmail.com>
6
6
  Classifier: Development Status :: 4 - Beta
@@ -1,7 +1,7 @@
1
1
  [plugin]
2
2
  name = "loomweave-plugin-python"
3
3
  plugin_id = "python"
4
- version = "1.2.0"
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.
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "loomweave-plugin-python"
7
- version = "1.2.0"
7
+ version = "1.2.1"
8
8
  description = "Loomweave Python language plugin — v1.0 release"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -1,3 +1,3 @@
1
1
  """loomweave-plugin-python — Python language plugin for Loomweave."""
2
2
 
3
- __version__ = "1.2.0"
3
+ __version__ = "1.2.1"
@@ -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.2.0"
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.2.0"
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.2.0"
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 {
@@ -464,7 +464,7 @@ wheels = [
464
464
 
465
465
  [[package]]
466
466
  name = "loomweave-plugin-python"
467
- version = "1.2.0"
467
+ version = "1.2.1"
468
468
  source = { editable = "." }
469
469
  dependencies = [
470
470
  { name = "packaging" },