-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-35025: [Python] Remove use of deprecated pandas.Categorical fastpath keyword #35026
GH-35025: [Python] Remove use of deprecated pandas.Categorical fastpath keyword #35026
Conversation
Benchmark runs are scheduled for baseline = 61b89df and contender = e488942. e488942 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…fastpath keyword (apache#35026) We are using `pd.Categorical(codes, categories, fastpath=True)`. This keyword is deprecated in pandas 2.1 and this should be changed to `pd.Categorical.from_codes(codes, categories)`. No * Closes: apache#35025 Authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
…fastpath keyword (apache#35026) ### Rationale for this change We are using `pd.Categorical(codes, categories, fastpath=True)`. This keyword is deprecated in pandas 2.1 and this should be changed to `pd.Categorical.from_codes(codes, categories)`. ### Are there any user-facing changes? No * Closes: apache#35025 Authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
…fastpath keyword (apache#35026) ### Rationale for this change We are using `pd.Categorical(codes, categories, fastpath=True)`. This keyword is deprecated in pandas 2.1 and this should be changed to `pd.Categorical.from_codes(codes, categories)`. ### Are there any user-facing changes? No * Closes: apache#35025 Authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
…fastpath keyword (apache#35026) ### Rationale for this change We are using `pd.Categorical(codes, categories, fastpath=True)`. This keyword is deprecated in pandas 2.1 and this should be changed to `pd.Categorical.from_codes(codes, categories)`. ### Are there any user-facing changes? No * Closes: apache#35025 Authored-by: Joris Van den Bossche <[email protected]> Signed-off-by: Joris Van den Bossche <[email protected]>
Rationale for this change
We are using
pd.Categorical(codes, categories, fastpath=True)
. This keyword is deprecated in pandas 2.1 and this should be changed topd.Categorical.from_codes(codes, categories)
.Are there any user-facing changes?
No