Skip to content
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

TST (string dtype): resolve xfails in pandas/tests/copy_view #60245

Conversation

jorisvandenbossche
Copy link
Member

One remaining xfail is due to Index not preserving dtype through join, which sounds like an actual bug.

xref #54792

@jorisvandenbossche jorisvandenbossche added the Strings String extension data type and string data label Nov 8, 2024
@jorisvandenbossche jorisvandenbossche added this to the 2.3 milestone Nov 8, 2024
if using_infer_string:
# TODO the default nullable string dtype still uses python storage
# this should be changed to pyarrow if installed
assert not tm.shares_memory(get_array(df2, "a"), get_array(df, "a"))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why does this behavior change?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Because the df starts with using str dtype with pyarrow storage (if pyarrow is installed, so just realize this needs a HAS_PYARROW check), and convert_dtypes will convert this to the nullable string dtype but using python storage (because that is still the default storage in this case, but we should change that before 3.0)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah OK - so this is really just a 2.3 behavior nuance?

@jorisvandenbossche jorisvandenbossche merged commit 084b199 into pandas-dev:main Nov 8, 2024
51 checks passed
@jorisvandenbossche jorisvandenbossche deleted the string-dtype-tests-copy_view branch November 8, 2024 21:47
Copy link

lumberbot-app bot commented Nov 8, 2024

Owee, I'm MrMeeseeks, Look at me.

There seem to be a conflict, please backport manually. Here are approximate instructions:

  1. Checkout backport branch and update it.
git checkout 2.3.x
git pull
  1. Cherry pick the first parent branch of the this PR on top of the older branch:
git cherry-pick -x -m1 084b1999cffde35bf9e49e5e5b8a5a0482bf927d
  1. You will likely have some merge/cherry-pick conflict here, fix them and commit:
git commit -am 'Backport PR #60245: TST (string dtype): resolve xfails in pandas/tests/copy_view'
  1. Push to a named branch:
git push YOURFORK 2.3.x:auto-backport-of-pr-60245-on-2.3.x
  1. Create a PR against branch 2.3.x, I would have named this PR:

"Backport PR #60245 on branch 2.3.x (TST (string dtype): resolve xfails in pandas/tests/copy_view)"

And apply the correct labels and milestones.

Congratulations — you did some good work! Hopefully your backport PR will be tested by the continuous integration and merged soon!

Remember to remove the Still Needs Manual Backport label once the PR gets merged.

If these instructions are inaccurate, feel free to suggest an improvement.

@jorisvandenbossche
Copy link
Member Author

Manual backport -> #60257

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Strings String extension data type and string data
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants