For python3.3+ but breaking in py3.10 onward, there are changes to importing some of the collections modules, specifically the Sequence class.
DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
For python3.3+ but breaking in py3.10 onward, there are changes to importing some of the
collections
modules, specifically theSequence
class.DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
Usages (from
gamma_insar
project dir):Fixing this will also clean up some of the warnings appearing in
pytest
.