Conversation
With pandas 3.x, the behavior of this test changed, probably related to copy-on-write, so that mutating ``` expected = pdf.x.map(lambda x: x + 1) pdf.index.name = "a" ``` no longer mutated `expected.index.name`. This updates the test to recompute `expected` after modifying the index.
jacobtomlinson
left a comment
There was a problem hiding this comment.
Awesome thanks @TomAugspurger I was just about to look at this.
RTD failures are unrelated and fixed in #12242
Unit Test ResultsSee test report for an extended history of previous test failures. This is useful for diagnosing flaky tests. 0 tests ±0 0 ✅ ±0 0s ⏱️ ±0s Results for commit 905c3fd. ± Comparison against base commit 461c540. |
|
I can't reproduce the windows failure, but push a commit that tries to fix it. Hopefully we just need to use the appropriate size somewhere |
|
Still there unfortunately |
|
The |
|
This fixed the build on Fedora against pandas3 for me |
With pandas 3.x, the behavior of this test changed, probably related to copy-on-write, so that mutating
no longer mutated
expected.index.name.This updates the test to recompute
expectedafter modifying the index.Closes #12225
Closes #12203