We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See ethereum/web3.py#1012 (comment)
Python 3.5.2 has a bug...
In the setup.py file, add a new line for python_requires like this from web3.py: https://github.com/ethereum/web3.py/blob/master/setup.py#L33
setup.py
python_requires
Use the requirement string: >=3.5,!=3.5.2,<4 to restrict the python versions. It might just be a ! without the equals, I can't remember.
>=3.5,!=3.5.2,<4
!
The text was updated successfully, but these errors were encountered:
Constraining Python Version 3.5.2
41c027b
Solves ethereum#125
Think I got it, first timer here.
Sorry, something went wrong.
Add nightly CI run (ethereum#125)
8702869
No branches or pull requests
What was wrong?
See ethereum/web3.py#1012 (comment)
Python 3.5.2 has a bug...
How can it be fixed?
In the
setup.py
file, add a new line forpython_requires
like this from web3.py: https://github.com/ethereum/web3.py/blob/master/setup.py#L33Use the requirement string:
>=3.5,!=3.5.2,<4
to restrict the python versions. It might just be a!
without the equals, I can't remember.The text was updated successfully, but these errors were encountered: