-
-
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
CLN: collected cleanups from other branches #27723
Conversation
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.
comments
@@ -666,6 +666,7 @@ def test_comparison_tzawareness_compat_scalars(self, op, box_with_array): | |||
# Raising in __eq__ will fallback to NumPy, which warns, fails, | |||
# then re-raises the original exception. So we just need to ignore. | |||
@pytest.mark.filterwarnings("ignore:elementwise comp:DeprecationWarning") | |||
@pytest.mark.filterwarnings("ignore:Converting timezone-aware:FutureWarning") |
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.
is ignoring this warning actually hiding something?
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.
AFAICT it is just noise in the logs
@@ -508,7 +508,7 @@ def test_datetime(): | |||
desc_result = grouped.describe() | |||
|
|||
idx = cats.codes.argsort() | |||
ord_labels = cats.take_nd(idx) | |||
ord_labels = cats.take(idx) # TODO: deprecate take<->take_nd alias |
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.
can you make an issue (and remove the comment)
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.
done
I think this is fine, but can you rebase anyways |
Rebased and green |
No description provided.