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

Pin manticore, web3 and rlp versions #87

Closed
wants to merge 3 commits into from
Closed
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
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,19 @@
'ptyprocess',
'pysha3>=1.0.2',
'flask>=1.0.2',
'web3',
# web3 3.16.3 and earlier use the older, deprecated `ethereum-*`
# libraries, which throw a deprecation warning when running etheno
'web3>=3.16.4',
# The following two requirements are for our fork of `keyfile.py`,
# but they should already be satisfied by the `web3` requirement
'cytoolz>=0.9.0,<1.0.0',
'pycryptodome>=3.4.7,<4.0.0',
'setuptools'
],
extras_require={
'manticore': ['manticore>=0.2.2']
# manticore 0.3.6 causes logging errors. See crytic/etheno#80
# rlp<3 is needed to stay compatible with manticore
'manticore': ['manticore>=0.2.2,<0.3.6', 'rlp<3']
},
entry_points={
'console_scripts': [
Expand Down