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

Updated web3 and eth-abi to not use beta versions #1616

Merged
merged 1 commit into from
Mar 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,16 +129,14 @@
# ImportError: cannot import name 'getargspec' from 'inspect'
# https://github.com/ethereum/web3.py/issues/2704#issuecomment-1369041219
# pip install git+https://github.com/ethereum/web3.py.git
# 'web3>=5.31.3', # MIT license
'web3[ipfs] @ git+https://github.com/ethereum/web3.py.git#v6.0.0-beta.9#egg=web3',
'web3[ipfs]>=6.0.0', # MIT license

# the following is needed for EIP712 ("signed typed data"):
'rlp>=2.0.1', # MIT license
'py-eth-sig-utils>=0.4.0', # MIT license (https://github.com/rmeissner/py-eth-sig-utils)
'py-ecc>=5.1.0', # MIT license (https://github.com/ethereum/py_ecc)

# 'eth-abi>=2.1.1', # MIT license (https://github.com/ethereum/eth-abi)
'eth-abi @ git+https://github.com/ethereum/eth-abi.git@v4.0.0-beta.2#egg=eth-abi',
'eth-abi>=4.0.0', # MIT license (https://github.com/ethereum/eth-abi)

# the following is needed (at least) for BIP32/39 mnemonic processing
'mnemonic>=0.19', # MIT license (https://github.com/trezor/python-mnemonic)
Expand Down