-
Notifications
You must be signed in to change notification settings - Fork 902
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
[REVIEW] Add deprecation warning for Series.set_mask
API
#8943
[REVIEW] Add deprecation warning for Series.set_mask
API
#8943
Conversation
rerun tests |
1 similar comment
rerun tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Two questions:
- Do we have a general policy on removing immediately vs. deprecating? We often making breaking PRs, so not sure how we should weigh that here.
- Do we want to indicate when we'll remove this deprecated API? Again, not sure whether we have standards for that.
Nowadays, for Public APIs we usually deprecate in a release and remove in the next consecutive release(s).
Don't remember ever specifying a solid version we will remove deprecated API in. There were instances we kept deprecated stuff for years 😆 I plan on removing this next immediate release along with any other bunch of deprecations(if any). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good. I would like to formalize some of that a bit in the future, will put that up for discussion in the dev guide.
@gpucibot merge |
Codecov Report
@@ Coverage Diff @@
## branch-21.10 #8943 +/- ##
===============================================
Coverage ? 10.59%
===============================================
Files ? 116
Lines ? 19034
Branches ? 0
===============================================
Hits ? 2017
Misses ? 17017
Partials ? 0 Continue to review full report at Codecov.
|
`Series.set_mask` is more of internal implementation detail that the end-users will not have knowledge about, hence deprecating the API. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: rapidsai#8943
Series.set_mask
is more of internal implementation detail that the end-users will not have knowledge about, hence deprecating the API.