In Python 3.10, collections remove the visibility of abc classes (Mapping included), making forgi throw an ImportError on import.
They were actually move to collections.abc since Python 3.3, so these changes should be retrocompatible with other Python 3 version.
If Python 2 is still supported, I can maybe wrapped it with sys.version_info condition ?
In Python 3.10, collections remove the visibility of abc classes (Mapping included), making forgi throw an ImportError on import. They were actually move to collections.abc since Python 3.3, so these changes should be retrocompatible with other Python 3 version.
If Python 2 is still supported, I can maybe wrapped it with
sys.version_info
condition ?