fix: add eth-account dependency for blockchain testing
All checks were successful
security-scanning / audit (push) Successful in 14s
All checks were successful
security-scanning / audit (push) Successful in 14s
- Add eth-account>=0.13.0 to pyproject.toml dependencies - Add eth-account>=0.13.0 to central requirements.txt - Fixes CI test failure: ModuleNotFoundError: No module named 'eth_account' - Ensures blockchain contract tests can import eth_account properly - Required for Guardian Contract and other blockchain functionality
This commit is contained in:
@@ -136,7 +136,10 @@ dependencies = [
|
|||||||
"ruff (>=0.15.8,<0.16.0)",
|
"ruff (>=0.15.8,<0.16.0)",
|
||||||
"sqlalchemy (>=2.0.48,<3.0.0)",
|
"sqlalchemy (>=2.0.48,<3.0.0)",
|
||||||
"types-requests (>=2.33.0.20260327,<3.0.0.0)",
|
"types-requests (>=2.33.0.20260327,<3.0.0.0)",
|
||||||
"types-setuptools (>=82.0.0.20260210,<83.0.0.0)"
|
"types-setuptools (>=82.0.0.20260210,<83.0.0.0)",
|
||||||
|
# Blockchain dependencies
|
||||||
|
"web3>=6.11.0",
|
||||||
|
"eth-account>=0.13.0"
|
||||||
]
|
]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ cryptography>=46.0.0
|
|||||||
ecdsa>=0.19.0
|
ecdsa>=0.19.0
|
||||||
base58>=2.1.1
|
base58>=2.1.1
|
||||||
web3>=6.11.0
|
web3>=6.11.0
|
||||||
|
eth-account>=0.13.0
|
||||||
|
|
||||||
# Data Processing
|
# Data Processing
|
||||||
pandas>=2.2.0
|
pandas>=2.2.0
|
||||||
|
|||||||
Reference in New Issue
Block a user