You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For workaround(because web3.py team's fix will be deployed sooner or later, you will no longer face the same issue), follow these steps:
For virtualenv users
cd env/lib/python3.11/site-packages/parsimonious
vim expressions.py
Replace from inspect import getargspec with from inspect import getfullargspec.
In the above commands, I assumed your virtual env name is env and your python version is 3.11, adjust the path if yours is different.
For docker users
Simply use lower version of docker image, this repo already locked it to Python 3.9
The text was updated successfully, but these errors were encountered:
If you are using Python 3.11 or higher, you may face this error:
It's a
web3.py
issue.For workaround(because web3.py team's fix will be deployed sooner or later, you will no longer face the same issue), follow these steps:
For virtualenv users
Replace
from inspect import getargspec
withfrom inspect import getfullargspec
.In the above commands, I assumed your virtual env name is
env
and your python version is 3.11, adjust the path if yours is different.For docker users
Simply use lower version of docker image, this repo already locked it to Python 3.9
The text was updated successfully, but these errors were encountered: