Support legacy module version declarations
Dependency Audit / dependency-audit (push) Failing after 1m42s
Deployment Installer / deployment-installer (push) Successful in 6s
Security Audit / security-audit (push) Successful in 10m43s

This commit is contained in:
2026-08-04 15:08:46 +02:00
parent 492449a4e2
commit 774793976c
3 changed files with 15 additions and 6 deletions
+2 -1
View File
@@ -74,7 +74,8 @@ class ReleaseEntrypointGateTests(unittest.TestCase):
def test_version_updater_targets_canonical_runtime_declarations(self) -> None:
script = (META_ROOT / "tools" / "release" / "push-release-tag.sh").read_text()
self.assertIn("could not update MODULE_VERSION", script)
self.assertIn("^manifest\\s*=\\s*ModuleManifest", script)
self.assertIn("could not update module version declaration", script)
self.assertIn("update_package_init_versions", script)
self.assertNotIn("could not update ModuleManifest.version", script)