From 38a917d7664b47386da79f1b5bd1ef283e1aaaa2 Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Sat, 14 Sep 2024 13:47:34 +0200 Subject: [PATCH] Fix: dependencies were pinned too strictly This prevented installing the SDK on some systems such as Nix 24.05. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0f62338e..eeacaf3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,8 +32,8 @@ dependencies = [ "typing_extensions", "aioresponses>=0.7.6", "aleph-superfluid>=0.2.1", - "eth_typing==4.3.1", - "web3==6.3.0", + "eth_typing>=4.0.0", + "web3>=6.3.0", ] [project.optional-dependencies]