sassoftware / python-dlpy

The SAS Deep Learning Python (DLPy) package provides the high-level Python APIs to deep learning methods in SAS Visual Data Mining and Machine Learning. It allows users to build deep learning models using friendly Keras-like APIs.
Apache License 2.0
224 stars 131 forks source link

updated collections to collections.abc #389

Closed jlwalke2 closed 1 year ago

jlwalke2 commented 1 year ago

The collections.abc module was created in Python 3.3 and certain classes were moved from collections to collections.abc, including MutableMapping and Iterable. As of Python 3.10, those classes are only available through collections.abc which causes dlpy to fail to import on Python >= 3.10.