skope-rules icon indicating copy to clipboard operation
skope-rules copied to clipboard

Update/Alias for imports for latest sklearn version and python >3.10

Open minghao51 opened this issue 6 months ago • 0 comments

As per https://github.com/scikit-learn-contrib/skope-rules/issues/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

minghao51 avatar Feb 22 '24 13:02 minghao51