-
Notifications
You must be signed in to change notification settings - Fork 102
Open
Description
As per #57 and also https://stackoverflow.com/questions/72032032/importerror-cannot-import-name-iterable-from-collections-in-python
The path for collections.Iterable (python >3.10 ) and sklearn.externals.six (sklearn ) is updated
Currently, for it to play nice with the updated packages, I had to aliases the path
import numpy as np
import collections.abc
import six
import sklearn
collections.Iterable = collections.abc.Iterable
sklearn.externals.six = six
from skrules import SkopeRules
Will there be able update for the path/checks?
perhaps, something like
try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable
or another if that checks the versions
I can submit a PR for it if you guys are up for it
fomightez, YangYang-624, jeremy-heffner-sl, jagandecapri, gcosta-provenir and 1 moredenisevitoriano, xwangsystem1, YangYang-624 and AnhVanGiangclaudia-dribia
Metadata
Metadata
Assignees
Labels
No labels