-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
CoW: Enable CoW by default and remove warning build #56633
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
Conversation
This pull request is stale because it has been open for thirty days with no activity. Please update and respond to this comment if you're still interested in working on this. |
# Conflicts: # pandas/tests/copy_view/test_indexing.py
cc @mroeschke this should be green now and ready to merge hopefully. That allows us to move forward with the deprecations here |
@@ -456,8 +454,7 @@ def add3(x, y, z): | |||
ufunc(ser, ser, df) | |||
|
|||
|
|||
# TODO(CoW) see https://github.com/pandas-dev/pandas/pull/51082 | |||
@td.skip_copy_on_write_not_yet_implemented | |||
@pytest.mark.xfail(reason="see https://github.com/pandas-dev/pandas/pull/51082") |
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 there a way to still test this with cow?
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.
no not at the moment
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.
Okay sounds good.
Just a merge conflict post ArrayManager merge. Feel free to merge after that |
# Conflicts: # pandas/_config/__init__.py # pandas/conftest.py # pandas/tests/extension/conftest.py
I'd prefer to go this way in enabling CoW. Having it on makes it easier to enforce the change step by step rather than doing it all at once.