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

updating to eth-typing to 2.0.0 #110

Merged

Conversation

javimaravillas
Copy link

What was wrong?

eth-typing was fixed to the minor version of 2.0.0. Due to ethereum/py-evm#1484, we need a new version with that dependency updated.

How was it fixed?

Updating the dependency was enough. Test are passing. Didn't find any breaking change from 1.3 to 2.0.0, neither in code or documentation.

setup.py Outdated
@@ -18,7 +18,7 @@
include_package_data=True,
install_requires=[
'eth-utils>=1.2.0,<2.0.0',
'eth-typing<2',
'eth-typing==2.0.0',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We typically use version ranges for install requirements. That makes it so that things are less likely to break when several packages are installed at once that all require eth-typing.

Suggested change
'eth-typing==2.0.0',
'eth-typing>=2.0.0,<3.0.0',

@davesque davesque merged commit bcfa46d into ethereum:stable/1.x Dec 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants