From 5f180b34769378fe01afdb6d28a4bb080b78ac7e Mon Sep 17 00:00:00 2001 From: Andre Ambrosio Date: Mon, 20 Apr 2026 12:06:29 -0300 Subject: [PATCH] chore(deps): pin aptos-sdk to >=0.11.0,<0.12.0 Hard-pin the major version so that a future 0.12.x does not silently enter the dependency graph with behavior changes. 0.11.0 is the version already tested against and the one our ecdsa override targets. Co-Authored-By: Claude Opus 4.7 (1M context) --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7704d7e..42742e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ "pynacl>=1.5.0", "requests>=2.31.0", "httpx>=0.27.0", - "aptos-sdk>=0.9.0", + "aptos-sdk>=0.11.0,<0.12.0", "pydantic>=2.0", "cryptography>=41.0", ] diff --git a/requirements.txt b/requirements.txt index 6cd22fa..247bd5e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ pynacl>=1.5.0 requests>=2.31.0 httpx>=0.27.0 -aptos-sdk>=0.9.0 +aptos-sdk>=0.11.0,<0.12.0 pydantic>=2.0 cryptography>=41.0