Remove deprecated .from_pandas constructors#20925
Merged
rapids-bot[bot] merged 2 commits intorapidsai:mainfrom Dec 30, 2025
Merged
Remove deprecated .from_pandas constructors#20925rapids-bot[bot] merged 2 commits intorapidsai:mainfrom
rapids-bot[bot] merged 2 commits intorapidsai:mainfrom
Conversation
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
galipremsagar
approved these changes
Dec 23, 2025
Contributor
Author
|
/merge |
rapids-bot Bot
pushed a commit
to rapidsai/cuxfilter
that referenced
this pull request
Jan 2, 2026
Nightly builds here are breaking like this:
```text
File /opt/conda/envs/docs/lib/python3.13/site-packages/cuxfilter/sampledata/random_signals.py:47
44 data["Time"] = [start + datetime.timedelta(minutes=1) * i for i in range(n)]
46 # Create a dataframe
---> 47 df = cudf.DataFrame.from_pandas(pd.DataFrame(data))
AttributeError: type object 'DataFrame' has no attribute 'from_pandas'
```
([build link](https://github.com/rapidsai/cuxfilter/actions/runs/20613315511/job/59201702539#step:12:1652))
I think because of rapidsai/cudf#20925
This switches to the `cudf.DataFrame` constructor to fix that.
Authors:
- James Lamb (https://github.com/jameslamb)
Approvers:
- Ajay Thorve (https://github.com/AjayThorve)
URL: #751
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Deprecated in 25.12, xref #19996
Checklist