Skip to content
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

Yank installation Python3.10 import error #1288

Open
JonaTheHutt opened this issue Sep 3, 2022 · 1 comment
Open

Yank installation Python3.10 import error #1288

JonaTheHutt opened this issue Sep 3, 2022 · 1 comment

Comments

@JonaTheHutt
Copy link

JonaTheHutt commented Sep 3, 2022

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)

@mikemhenry
Copy link
Contributor

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants