-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
DEPR: Remove legacy offsets #13590
DEPR: Remove legacy offsets #13590
Conversation
aa7871c
to
7d0d674
Compare
@@ -432,6 +432,7 @@ Deprecations | |||
- ``buffer_lines`` has been deprecated in ``pd.read_csv()`` and will be removed in a future version (:issue:`13360`) | |||
- ``as_recarray`` has been deprecated in ``pd.read_csv()`` and will be removed in a future version (:issue:`13373`) | |||
- top-level ``pd.ordered_merge()`` has been renamed to ``pd.merge_ordered()`` and the original name will be removed in a future version (:issue:`13358`) | |||
- Removal of the legacy time rules (offset aliases), deprecated since 0.14.0 (this has been alias since 0.8.0) (GH13590). |
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.
put in a top-level separate section (prior deprecation removal - look how I did this for 0.18.0)
Current coverage is 84.39%@@ master #13590 diff @@
==========================================
Files 142 142
Lines 51225 51191 -34
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
- Hits 43225 43202 -23
+ Misses 8000 7989 -11
Partials 0 0
|
7d0d674
to
59d3984
Compare
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
- Removal of the legacy time rules (offset aliases), deprecated since 0.14.0 (this has been alias since 0.8.0) (GH13590). | ||
|
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.
put the issue reference as a link
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.
I would also add a blurb about what exactly these are (show an example), and point to the new docs as well.
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.
oops, changed the issue number to the link.
lgtm otherwise. |
4c295e4
to
b554bc7
Compare
The "Removal of prior version deprecations/changes" section has already been added in the meantime, so I think this needs a rebase |
b554bc7
to
65205be
Compare
65205be
to
2593b1f
Compare
Follow-up to #13590. Remove legacy offset aliases that remained in `pandas/tseries/frequencies.py`: `_period_alias_dictionary()` and `_period_alias_dict`. Author: agraboso <agraboso@gmail.com> Closes #13868 from agraboso/follow-13590 and squashes the following commits: 25d932d [agraboso] DEPR: Remove legacy offsets
git diff upstream/master | flake8 --diff
Follow-up of #10951. Remove legacy offsets deprecated in 0.17.0.