-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Backport PR #43152 on branch 1.3.x (BUG: Outer/right merge with EA dtypes cast to object) #43389
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
Backport PR #43152 on branch 1.3.x (BUG: Outer/right merge with EA dtypes cast to object) #43389
Conversation
Is this because, maybe |
([1], "left"), | ||
], | ||
) | ||
def test_merge_EA_dtype(self, any_numeric_ea_dtype, how, expected_data): |
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.
yep need to change this for 1.3.x
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.
So, I should make the change in this PR then, right?
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.
yes in this PR itself (as it targets the backport branch)
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.
since I did not create this PR, not able to edit it
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.
adding this parametrisation definition should resolve this
@pytest.mark.parametrize(
"any_numeric_ea_dtype",
[
"UInt8",
"Int8",
"UInt16",
"Int16",
"UInt32",
"Int32",
"UInt64",
"Int64",
"Float32",
"Float64",
],
)
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.
Isn't this any_nullable_numeric_dtype on 1.3.x?
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.
Ah! right, I see it here
But again would need help from maintainer to amend this PR.
Hello @meeseeksmachine! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found: There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻 Comment last updated at 2021-09-04 18:47:28 UTC |
Rats. The line got too long when I updated the name in the web editor. I'll fix it if all other CI passes. |
@github-actions pre-commit |
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.
Tests seem to pass. LGTM after the pre-commit bot does its thing.
thanks @debnathshoham and @lithomas1 |
Backport PR #43152: BUG: Outer/right merge with EA dtypes cast to object