-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Importing Sequence from collections now triggers an error in Python > 3.7, see here:
So the code in bic.py
if not isinstance(y, (collections.Sequence, np.ndarray, pd.core.series.Series)):
should be replaced by
if not isinstance(y, (collections.abc.Sequence, np.ndarray, pd.core.series.Series)):
for instance (there may be similar instances in other file from this package).
Metadata
Metadata
Assignees
Labels
No labels