Closed felunka closed 1 year ago
Fixes deprecation warning for pandas "is_categorical_dtype": category_encoders/utils.py:50: FutureWarning: is_categorical_dtype is deprecated and will be removed in a future version. Use isinstance(dtype, CategoricalDtype) instead
Check: https://github.com/pandas-dev/pandas/pull/33385
Replacing instances with the recommended alternative to use "isinstance"
Fixes #418
Thanks for updating!
Fixes deprecation warning for pandas "is_categorical_dtype": category_encoders/utils.py:50: FutureWarning: is_categorical_dtype is deprecated and will be removed in a future version. Use isinstance(dtype, CategoricalDtype) instead
Check: https://github.com/pandas-dev/pandas/pull/33385
Replacing instances with the recommended alternative to use "isinstance"