-
Notifications
You must be signed in to change notification settings - Fork 34
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
Python 3.10 incompatibility #58
Comments
I'm attaching the relevant source in the documentation here for further use. |
I think I'll add this issue to the stack of my tasks. (ISIC is last runs + now finishing DDP). What is your opinion? btw: |
Update: I ran
When the test failed on:
|
Currently fuse is incompatible with Python 3.10.x
for example, I encountered an
ImportError: cannot import name 'Iterable' from 'collections'
because they changed the structure of the collections module and it needs to be imported as:
from collections.abc import Iterable
rather thanfrom collections import Iterable
Maybe there are other compatibility issues as well, for now I just reverted back to Python 3.7, but we should solve it sometime...
The text was updated successfully, but these errors were encountered: