@@ -60,23 +60,23 @@ def test_rewrite_uses_source_snapshot_and_pins_public_sdk() -> None:
6060 assert "veadk-python" in rewritten .splitlines ()[0 ]
6161 assert "veadk-python[" not in rewritten
6262 assert "agentkit-harness-sidecar-integration" not in rewritten
63- assert rewritten .splitlines ()[1 ] == "agentkit-sdk-python==0.8.1 "
64- assert rewritten .splitlines ().count ("agentkit-sdk-python==0.8.1 " ) == 1
63+ assert rewritten .splitlines ()[1 ] == "agentkit-sdk-python==0.8.4 "
64+ assert rewritten .splitlines ().count ("agentkit-sdk-python==0.8.4 " ) == 1
6565 assert "google-adk>=1.34.0" in rewritten
6666
6767
6868def test_rewrite_preserves_comments_and_rejects_missing_veadk () -> None :
6969 with pytest .raises (ManagedSidecarSourceError , match = "requirement_missing" ):
7070 rewrite_managed_sidecar_requirements (
71- "# keep\n @local-reference\n agentkit-sdk-python==0.8.1 \n "
71+ "# keep\n @local-reference\n agentkit-sdk-python==0.8.4 \n "
7272 )
7373
7474 rewritten = rewrite_managed_sidecar_requirements (
7575 "# keep\n veadk-python[harness-sidecar]\n "
76- "agentkit-sdk-python>=0.8\n agentkit_sdk_python==0.8.1 \n "
76+ "agentkit-sdk-python>=0.8\n agentkit_sdk_python==0.8.4 \n "
7777 )
7878 assert "# keep" in rewritten
79- assert rewritten .splitlines ().count ("agentkit-sdk-python==0.8.1 " ) == 1
79+ assert rewritten .splitlines ().count ("agentkit-sdk-python==0.8.4 " ) == 1
8080
8181
8282def test_stage_copies_only_safe_runtime_source_and_rewrites_requirements (
@@ -106,7 +106,7 @@ def test_stage_copies_only_safe_runtime_source_and_rewrites_requirements(
106106 assert not (project / "veadk/__pycache__" ).exists ()
107107 assert not (project / "veadk/.env.local" ).exists ()
108108 requirements = (project / "requirements.txt" ).read_text (encoding = "utf-8" )
109- assert requirements .splitlines ().count ("agentkit-sdk-python==0.8.1 " ) == 1
109+ assert requirements .splitlines ().count ("agentkit-sdk-python==0.8.4 " ) == 1
110110 assert "veadk-python[" not in requirements
111111
112112
0 commit comments