You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pyRMT.py fails in Python 3.10 on from collections import MutableSequence, Sequence since apparently in Python 3.10 it should be from collections.abc import ...
The text was updated successfully, but these errors were encountered:
So the trivial fix would be just update the imports from "collections" to "collections.abc".
There is even a pull request for the trivial fix, so please, pull it. #2
There are other projects depending on this repository, like WeightWatcher, which cannot be used with python 3.10
until this is fixed (or WW moves to a fork.)
pyRMT.py fails in Python 3.10 on
from collections import MutableSequence, Sequence
since apparently in Python 3.10 it should befrom collections.abc import ...
The text was updated successfully, but these errors were encountered: