Skip to content

Commit

Permalink
Merge pull request #15850 from rapidsai/branch-24.06
Browse files Browse the repository at this point in the history
Forward-merge branch-24.06 into branch-24.08
  • Loading branch information
GPUtester authored May 24, 2024
2 parents 30bba24 + 8b5ff18 commit a693e5b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/cudf/cudf/core/indexed_frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,8 @@ def _from_columns_like_self(
frame = self.__class__._from_data(data)

if index is not None:
frame.index = index
# TODO: triage why using the setter here breaks dask_cuda.ProxifyHostFile
frame._index = index
return frame._copy_type_metadata(
self,
include_index=bool(index_names),
Expand Down

0 comments on commit a693e5b

Please sign in to comment.