From 86ee68967733d68d3066831a77ef5fbe4c04360b Mon Sep 17 00:00:00 2001 From: Vyas Ramasubramani Date: Tue, 23 Jan 2024 23:57:22 +0000 Subject: [PATCH] Remove change from dask (does not support the plugin) --- python/dask_cudf/dask_cudf/accessors.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/dask_cudf/dask_cudf/accessors.py b/python/dask_cudf/dask_cudf/accessors.py index 47fcedfd4d7..1c21fca51c8 100644 --- a/python/dask_cudf/dask_cudf/accessors.py +++ b/python/dask_cudf/dask_cudf/accessors.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021-2024, NVIDIA CORPORATION. +# Copyright (c) 2021, NVIDIA CORPORATION. class StructMethods: @@ -263,6 +263,11 @@ def sort_values( ------- ListColumn with each list sorted + Notes + ----- + Difference from pandas: + * Not supporting: `inplace`, `kind` + Examples -------- >>> s = cudf.Series([[4, 2, None, 9], [8, 8, 2], [2, 1]]) @@ -272,11 +277,6 @@ def sort_values( 1 [2.0, 8.0, 8.0] 2 [1.0, 2.0] dtype: list - - .. pandas-compat:: - **ListMethods.sort_values** - - The `inplace` and `kind` argument is currently unsupported. """ return self.d_series.map_partitions( lambda s: s.list.sort_values(