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
At the moment users will get: ImportError: cannot import name 'MutableMapping' from 'collections' (C:\Python310\lib\collections\__init__.py)
ImportError: cannot import name 'MutableMapping' from 'collections' (C:\Python310\lib\collections\__init__.py)
This seems to be because of this dependency (line 4) which needs to be: from collections.abc import MutableMapping
from collections.abc import MutableMapping
The text was updated successfully, but these errors were encountered:
Yep - I just got hit by this. Is there a workaround?
I'm thinking I can install an older python with pyenv, and create a virtualenv with it to run the app.
Sorry, something went wrong.
Yep - I just got hit by this. Is there a workaround? I'm thinking I can install an older python with pyenv, and create a virtualenv with it to run the app.
You can just open the file and change the from collections import MutableMapping to from collections.abc import MutableMapping. It worked for me.
from collections import MutableMapping
Successfully merging a pull request may close this issue.
At the moment users will get:
ImportError: cannot import name 'MutableMapping' from 'collections' (C:\Python310\lib\collections\__init__.py)
This seems to be because of this dependency (line 4) which needs to be:
from collections.abc import MutableMapping
The text was updated successfully, but these errors were encountered: