The PVInfo._compareNumeric private method raises an AttributeError on Python 3.10 as follows:
File "$PREFIX/lib/python3.10/site-packages/pcaspy/driver.py", line 482, in _compareNumeric
if isinstance(value, collections.Iterable):
AttributeError: module 'collections' has no attribute 'Iterable'
The PVInfo._compareNumeric private method raises an
AttributeError
on Python 3.10 as follows:The
Iterable
object was moved tocollections.abc
.