From 8aeb9f383c24e0efb8b508933b46e39e6235754e Mon Sep 17 00:00:00 2001 From: Drew Stone Date: Sat, 23 May 2026 02:00:21 +0300 Subject: [PATCH] chore: bump python_runtime __init__.py version to 0.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 0.34.0 release tag failed publish.yml's version-lock check — clients/python/src/agent_eval_rpc/__init__.py still had the 0.32.0 fallback string (the in-process __version__ when the installed package metadata isn't available). The workflow asserts this matches the npm version. Bumping in lockstep. --- clients/python/src/agent_eval_rpc/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/src/agent_eval_rpc/__init__.py b/clients/python/src/agent_eval_rpc/__init__.py index bd0c21b..a9b184d 100644 --- a/clients/python/src/agent_eval_rpc/__init__.py +++ b/clients/python/src/agent_eval_rpc/__init__.py @@ -48,7 +48,7 @@ try: __version__ = version("agent-eval-rpc") except PackageNotFoundError: - __version__ = "0.32.0" + __version__ = "0.34.0" __all__ = [ "Client",