-
Notifications
You must be signed in to change notification settings - Fork 1.1k
[DO NOT MERGE] Upgrade pandas to 2.2.x #4044
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
|
@prateekdesai04 any clue why |
@@ -18,7 +18,7 @@ | |||
DEPENDENT_PACKAGES = { | |||
"boto3": ">=1.10,<2", # <2 because unlikely to introduce breaking changes in minor releases. >=1.10 because 1.10 is 3 years old, no need to support older | |||
"numpy": ">=1.21,<1.29", # "<{N+3}" upper cap, where N is the latest released minor version, assuming no warnings using N | |||
"pandas": ">=2.0.0,<2.2.0", # "<{N+1}" upper cap | |||
"pandas": ">=2.2.0,<2.3.0", # "<{N+1}" upper cap # FIXME FIXME FIXME: Temp, revert lower bound to >=2.0 prior to merge |
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.
pandas>=2.1.0
dropped support for Python 3.8 (changelog), so this update would require us to drop Python 3.8 support as well.
926d5c8
to
895bac4
Compare
|
Replaced by #4079 |
Issue #, if available:
Resolves #3989
Description of changes:
Upgrade Pandas from <2.2 to <2.3
TODO:
>=2.0,<2.3
prior to merge.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.