Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump eth-utils version #1715

Merged
merged 2 commits into from
Aug 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions newsfragments/1715.misc.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump the minimum version of eth-utils to 1.9.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"eth-account>=0.5.2,<0.6.0",
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",
"eth-typing>=2.0.0,<3.0.0",
"eth-utils>=1.8.4,<1.9.1",
"eth-utils>=1.9.3,<2.0.0",
"hexbytes>=0.1.0,<1.0.0",
"ipfshttpclient>=0.4.13,<1",
"jsonschema>=3.2.0,<4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion web3/_utils/formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
to_dict,
to_list,
)
from eth_utils.curried import (
from eth_utils.curried import ( # type: ignore
apply_formatter_at_index,
)
from eth_utils.toolz import (
Expand Down
2 changes: 1 addition & 1 deletion web3/_utils/method_formatters.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Union,
)

from eth_utils.curried import (
from eth_utils.curried import ( # type: ignore
apply_formatter_at_index,
apply_formatter_if,
apply_formatter_to_array,
Expand Down
2 changes: 1 addition & 1 deletion web3/_utils/rpc_abi.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from eth_utils import (
to_dict,
)
from eth_utils.curried import (
from eth_utils.curried import ( # type: ignore
apply_formatter_at_index,
)
from eth_utils.toolz import (
Expand Down
2 changes: 1 addition & 1 deletion web3/_utils/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
is_list_like,
is_string,
)
from eth_utils.curried import (
from eth_utils.curried import ( # type: ignore
apply_formatter_to_array,
)
from eth_utils.hexadecimal import (
Expand Down
2 changes: 1 addition & 1 deletion web3/method.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)
import warnings

from eth_utils.curried import (
from eth_utils.curried import ( # type: ignore
to_tuple,
)
from eth_utils.toolz import (
Expand Down
2 changes: 1 addition & 1 deletion web3/middleware/geth_poa.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from eth_utils.curried import (
from eth_utils.curried import ( # type: ignore
apply_formatters_to_dict,
apply_key_map,
)
Expand Down
2 changes: 1 addition & 1 deletion web3/middleware/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Callable,
)

from eth_utils.curried import (
from eth_utils.curried import ( # type: ignore
apply_formatter_at_index,
apply_formatter_if,
apply_formatters_to_dict,
Expand Down
2 changes: 1 addition & 1 deletion web3/providers/eth_tester/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
is_hex,
is_string,
)
from eth_utils.curried import (
from eth_utils.curried import ( # type: ignore
apply_formatter_if,
apply_formatters_to_dict,
)
Expand Down