File tree 2 files changed +4
-1
lines changed 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 67
67
# Note: ethereum-maintained libraries in this list should be added to the
68
68
# `install_pre_releases.py` script.
69
69
"eth-abi>=5.0.1" ,
70
- "eth-account>=0.13.1 " ,
70
+ "eth-account>=0.13.6 " ,
71
71
"eth-hash[pycryptodome]>=0.5.1" ,
72
72
"eth-typing>=5.0.0" ,
73
73
"eth-utils>=5.0.0" ,
Original file line number Diff line number Diff line change @@ -164,6 +164,9 @@ def type_aware_apply_formatters_to_dict(
164
164
"""
165
165
Preserve ``AttributeDict`` types if original ``value`` was an ``AttributeDict``.
166
166
"""
167
+ # TODO: In v8, Use eth-utils 5.3.0 as lower pin where ``apply_formatters_to_dict``
168
+ # already handles the CamelModel case, rather than generalizing to all BaseModel
169
+ # instances.
167
170
if isinstance (value , BaseModel ):
168
171
value = value .model_dump (by_alias = True )
169
172
You can’t perform that action at this time.
0 commit comments