-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Dissallow python 3.5.1 #1094
Labels
Comments
andrzej3393
added a commit
to andrzej3393/web3.py
that referenced
this issue
Oct 8, 2018
According to https://docs.python.org/3/library/typing.html#typing.NewType `NewType` was introduced in Python 3.5.2. Fixes ethereum#1094
Merged
Fixed by #1095 |
Reminder to backport to v4 |
Also, because of #1012 (comment) maybe we should require >=3.5.3 |
This was referenced Oct 16, 2018
@pipermerriam I think this can be closed with the two PRs above. 👍 |
kclowes
pushed a commit
to pjryan93/web3.py
that referenced
this issue
Apr 25, 2019
According to https://docs.python.org/3/library/typing.html#typing.NewType `NewType` was introduced in Python 3.5.2. Fixes ethereum#1094
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What was wrong?
It looks like
typing.NewType
may not be available in python 3.5.1#1091
How can it be fixed?
Check what version
NewType
was added and restrict our python versions as declared insetup.py
to be>=
that versionThe text was updated successfully, but these errors were encountered: