From ca2bfda105e995b748b30864d0e8276a23376f5c Mon Sep 17 00:00:00 2001 From: mhh Date: Mon, 8 Apr 2024 12:53:50 +0200 Subject: [PATCH] Restrict eth-account version < 0.11.0 due to maintainers introducing breaking pydantic requirements in 0.11.1 and 0.12.1 that did not exist in 0.11.0 and 0.12.0 respectively --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f0bd0838..f21f7ece 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ "coincurve; python_version<\"3.11\"", "coincurve>=17.0.0; python_version>=\"3.11\"", "eth_abi>=4.0.0; python_version>=\"3.11\"", - "eth_account>=0.4.0,<0.12.0", + "eth_account>=0.4.0,<0.11.0", "python-magic", "typer", "typing_extensions",