You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix compatibility issues with pandas 1.4.3 (#11152)
This PR fixes the two main issues that crop up in pandas 1.4.3 relative to 1.4.2, both around `pd.concat`:
- Columns are now sorted such that integer values come before string values. That is a behavior change that we mimic.
- When multiple objects with identical RangeIndexes are concatenated along axis 1 and sorting is requested, pandas now creates an integer index instead of a RangeIndex. This is not what we want since it increases memory pressure, so those tests have been modified to stop checking the index type and a [pandas issue has been raised](pandas-dev/pandas#47501).
Authors:
- Vyas Ramasubramani (https://github.com/vyasr)
Approvers:
- GALI PREM SAGAR (https://github.com/galipremsagar)
- Nghia Truong (https://github.com/ttnghia)
URL: #11152
0 commit comments