From 436c700cf09781c385c7d498dc13f5188a72ca75 Mon Sep 17 00:00:00 2001 From: Eric Tesenair Date: Wed, 19 Aug 2026 15:55:35 -0400 Subject: [PATCH] chore(python-server-wallets): bump dynamic-wallet-sdk to 0.6.2 Updates the Dynamic Python SDK pin from >=0.6.0 to >=0.6.2, the latest release on PyPI. Verified against 0.6.2: all twelve CLI entrypoints import cleanly, every symbol the example imports from the SDK still resolves, and the signatures of create_wallet_account, sign_message, sign_transaction, and both wallet client constructors are unchanged from the example's call sites. --- examples/python-server-wallets/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python-server-wallets/pyproject.toml b/examples/python-server-wallets/pyproject.toml index 7614a7e..4a21550 100644 --- a/examples/python-server-wallets/pyproject.toml +++ b/examples/python-server-wallets/pyproject.toml @@ -4,7 +4,7 @@ version = "1.0.0" description = "Dynamic Python SDK server-side wallet management examples" requires-python = ">=3.11,<3.14" dependencies = [ - "dynamic-wallet-sdk>=0.6.0", + "dynamic-wallet-sdk>=0.6.2", "python-dotenv>=1.0.0", "httpx>=0.27.0", "solders>=0.21.0",