-
Notifications
You must be signed in to change notification settings - Fork 45
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
Updating for Python v3.10 #42
base: master
Are you sure you want to change the base?
Conversation
try: | ||
from collections import abc | ||
collections.MutableMapping = abc.MutableMapping | ||
collections.Iterable = abc.Iterable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@borcuttjahns, are these transfers from abc.X
to collections.X
needed somewhere? I couldn't find a place where they are used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello, I am having issues running this code and it seams to be localized to this same issue you are talking about here. I was wondering if you found a solution.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@DavidGorlin this branch should fix the issue. It's what we currently use.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or do you mean the code here is erroring?
This is all @borcuttjahns work, but I wanted to open this up so that we can close the fork.