Skip to content

Commit

Permalink
transform: Fix scikit-learn 0.21.0 incompatibility
Browse files Browse the repository at this point in the history
The commit 2bd87f6ed8d36f89cab73552665e4e59e892262b from scikit-learn
removed the sklearn.utils.fixes.signature function in favour of using
the inspect.signature function.
  • Loading branch information
qtux committed May 14, 2019
1 parent f8d2fb8 commit 6b1669f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seglearn/transform.py
Expand Up @@ -8,7 +8,7 @@
from scipy.interpolate import interp1d
from sklearn.base import BaseEstimator, TransformerMixin
from sklearn.utils import check_random_state, check_array, check_consistent_length, shuffle
from sklearn.utils.fixes import signature
from inspect import signature
from sklearn.exceptions import NotFittedError
from sklearn.utils import check_random_state, check_array, check_consistent_length
from sklearn.utils.metaestimators import _BaseComposition
Expand Down

0 comments on commit 6b1669f

Please sign in to comment.