fix: add eth-account dependency for blockchain testing
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:
aitbc1
2026-03-29 11:59:58 +02:00
parent 3352d63f36
commit 39e4282525
2 changed files with 5 additions and 1 deletions

View File

@@ -136,7 +136,10 @@ dependencies = [
"ruff (>=0.15.8,<0.16.0)",
"sqlalchemy (>=2.0.48,<3.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 = [
"Development Status :: 4 - Beta",