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
Hi all,
just encountered an error when trying to install Yank 0.25.2 w/ python3.10:
class CombinatorialTree(collections.MutableMapping): AttributeError: module 'collections' has no attribute 'MutableMapping'
Changing the import statements to
import collections.abc
abd renaming the class attribute solved the issue for now, maybe this can be fixed.
class CombinatorialTree(collections.abc.MutableMapping)
The text was updated successfully, but these errors were encountered:
I'm working on fixing this here: #1286 Yank right now isn't getting a ton of attention but it is on on radar, thanks for the bug report!
For now, hopefully you can just use an older python version.
Sorry, something went wrong.
No branches or pull requests
Hi all,
just encountered an error when trying to install Yank 0.25.2 w/ python3.10:
class CombinatorialTree(collections.MutableMapping): AttributeError: module 'collections' has no attribute 'MutableMapping'
Changing the import statements to
import collections.abc
abd renaming the class attribute solved the issue for now, maybe this can be fixed.
class CombinatorialTree(collections.abc.MutableMapping)
The text was updated successfully, but these errors were encountered: