lalinference.wrapper raises ImportError on Python 3.10
Attempting to import lalinference.wrapper
on Python 3.10 raises an ImportError
:
Traceback (most recent call last):
File "/home/conda/feedstock_root/build_artifacts/lalinference-split_1639200209046/test_tmp/run_test.py", line 41, in <module>
import lalinference.wrapper
File "/home/conda/feedstock_root/build_artifacts/lalinference-split_1639200209046/_test_env/lib/python3.10/site-packages/lalinference/wrapper.py", line 5, in <module>
class LIVariablesWrap(collections.MutableMapping):
AttributeError: module 'collections' has no attribute 'MutableMapping'
collections.MutableMapping
was moved to collections.abc
in Python 3.3.