Skip to content

Commit

Permalink
Merge pull request #65 from cburgdorf/christoph/fix/deprecation-warning
Browse files Browse the repository at this point in the history
Remove deprecated import
  • Loading branch information
pipermerriam authored Jan 8, 2020
2 parents a95532d + 63e5ccd commit a181917
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions eth_keys/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
TYPE_CHECKING,
)

from eth_typing import (
ChecksumAddress,
)
from eth_utils import (
big_endian_to_int,
encode_hex,
Expand All @@ -25,9 +28,6 @@
to_checksum_address,
to_normalized_address,
)
from eth_utils.typing import (
ChecksumAddress,
)

from eth_keys.utils.address import (
public_key_bytes_to_address,
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@
],
'eth-keys': [
"eth-utils>=1.3.0,<2.0.0",
"eth-typing>=2.2.1,<3.0.0",
],
'test': [
"asn1tools>=0.146.2,<0.147",
"pyasn1>=0.4.5,<0.5",
'pytest==3.2.2',
'hypothesis==3.30.0',
'hypothesis>=4.56.1, <5.0.0',
"eth-hash[pysha3];implementation_name=='cpython'",
"eth-hash[pycryptodome];implementation_name=='pypy'",
],
Expand Down

0 comments on commit a181917

Please sign in to comment.