Skip to content

Fixed broken import with python version 3.10

Jaeck, Ludwig requested to merge fix_py310 into master

[Situation] I was calling python3 -c "import suqc; print(suqc.__version__)" using python 3.10 and got a module import error for 'MutableMapping'.

[Request Reason] MutableMapping was moved into module 'collections.abc' in python 3.10

[Solution] Implemented python version dependent import

Merge request reports