Python 3.10 removed some deprecated aliases from collections that live in collections.abc since 3.3, most notably Iterable. Should be a safe change for anything >= Python 3.3, seems like this is enough to get things working on 3.10 (or at least importable).
Python 3.10 removed some deprecated aliases from
collections
that live incollections.abc
since 3.3, most notablyIterable
. Should be a safe change for anything >= Python 3.3, seems like this is enough to get things working on 3.10 (or at least importable).