-
Notifications
You must be signed in to change notification settings - Fork 42
SettingWithCopyWarning in job manager #641
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
Comments
I already looked into this issue, but I could not yet reproduce this warning from using the job manager. I can reproduce it with some simple pandas usage like df = pandas.DataFrame({"foo": range(10)})
active = df[df.foo % 3 == 0]
active.loc[3, "foo"] = 666 but I would need a more practical usage example of the job manager that triggers this |
seems like pandas is handy to build foot guns maybe related to #641
I could somehow reproduce the problem and 803fa2b seems to fix it. Unfortunately I didn't find a way to capture it in a unit test (because I could only reproduce it by hacks I don't want to keep in the code, and I couldn't wrap my head around the exact conditions that trigger the warning), so I'll just merge this and close this ticket. Will be part of next release (0.35.0). Feel free to reopen when problem persists |
reported by Joris C:
The text was updated successfully, but these errors were encountered: