-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
DEPR: Series/DataFrame/HDFStore.iteritems() #45321
Conversation
mroeschke
commented
Jan 12, 2022
- tests added / passed
- Ensure all linting tests pass, see here for how to run them
- whatsnew entry
What's the reasoning to deprecate I suppose it is the duplication with |
The duplication with I think |
Do you still have plans to propose that? Or the problems you encountered were sufficient to drop the idea? |
Yeah it was tricky to deprecate
in which |
-1 on interitems this deprecated in python itself |
### Summary & Motivation Fixes #12604 `.iteritems` is [deprecated since 1.50 ](https://pandas.pydata.org/docs/whatsnew/v1.5.0.html#other-deprecations) and will be removed in a future version. Changing to `.items`. (pandas-dev/pandas#45321). ### How I Tested These Changes I did not, but pandas-dev/pandas#45321 appears to indicate it's a safe change to make. If I can somehow install this version of dagster on my machine, I'm happy to test using the code that surfaced the issue, but I'm not sure how to do that.