Skip to content

Commit

Permalink
bump eth-utils version (#1715)
Browse files Browse the repository at this point in the history
* bump eth-utils version

* add newsfragment
  • Loading branch information
wolovim authored Aug 24, 2020
1 parent 8bb0b56 commit d431db5
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
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

0 comments on commit d431db5

Please sign in to comment.