-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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: Remove Int64Index, UInt64Index, Float64Index and Index._is_backward_compat_public_numeric_index #42717
Milestone
Comments
4 tasks
2 tasks
This was referenced Nov 3, 2022
This was referenced Jan 16, 2023
This was referenced Jan 27, 2023
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Pandas 2.0 NumericIndex should be the default numerical index and
Int64Index
,UInt64Index
andFloat64Index
should be removed. See #41153 & #41272 for more discussion.#41153 adds an internal attribute
_is_backward_compat_public_numeric_index
to theIndex
class (and its numeric child classes). This is only used to keep track of whether an index is aNumericIndex
or one of its child indexes (Int64Index
,UInt64Index
andFloat64Index
) in order to maintain backwards compatability in Pandas 1.x. It will not be needed in pandas 2.0 after the child classes are removed and should removed in pandas 2.0 also.The text was updated successfully, but these errors were encountered: