-
Notifications
You must be signed in to change notification settings - Fork 74
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
Support for newer python versions (> 3.7) #15
Comments
The solution is simple, import |
Hello! Got the same problem here! Wrote ‘from collections.abc import Sequence’ but problem persists. Did I miss something? |
Yes, you would need to update it for every file hat uses the Collections library to import sequence and any other component that got moved to Collections.abc, such as Sequence, Iterable, and Iterator. There should be a total of about 7 different files in the AudioLazy project that have the same issue. Also note, not everything that is getting imported from Collections is from Collections.abc, so you'll have to have to separate those imports. I attached an image showing you what I mean. All of the tabs at the top are all of the files that you're going to need to change. If you change them one at a time, you can keep running the program finding the next import that you need to change from the error line. Hope this helps! |
Bumping the python version from 3.6 fails because of a missing import from the
collections
library:The text was updated successfully, but these errors were encountered: