-
-
Notifications
You must be signed in to change notification settings - Fork 26.1k
FIX change FutureWarnings to DeprecationWarnings for the tags #30573
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX change FutureWarnings to DeprecationWarnings for the tags #30573
Conversation
The fragment name should be |
It will be a breaking change between 1.6.0 and 1.6.1 in case people relies on the inheritance of the |
I thought we introduced the warnings after 1.6 but we did it in between the RC and the final release, so all good |
The
FutureWarnings
that we raise related to__sklearn_tags__
are visible to the end user but without the possibility to fix it because the warnings is more intended to developer of estimators.This PR changes from
FutureWarnings
toDeprecationWarnings
.