You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a cuDF deprecation warning from merge_sorted while running test_merge_sorted_of_proxied_cudf_dataframes, see details below:
===================================FAILURES===================================_________________test_merge_sorted_of_proxied_cudf_dataframes_________________deftest_merge_sorted_of_proxied_cudf_dataframes():
cudf=pytest.importorskip("cudf")
dfs= [cudf.DataFrame({"a": range(10)}), cudf.DataFrame({"b": range(10)})]
>got=cudf.merge_sorted(proxify_device_objects(dfs, {}, []))
dask_cuda/tests/test_proxy.py:583:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
objs= [<dask_cuda.proxy_object.ProxyObjectat0x7f4ef6bb65b0ofcudf.core.dataframe.DataFrameat0x7f4dd54fb070>, <dask_cuda.proxy_object.ProxyObjectat0x7f4ef6bb67f0ofcudf.core.dataframe.DataFrameat0x7f4ef70b2a30>]
keys=None, by_index=False, ignore_index=False, ascending=Truena_position='last'defmerge_sorted(
objs,
keys=None,
by_index=False,
ignore_index=False,
ascending=True,
na_position="last",
):
"""Merge a list of sorted DataFrame or Series objects. Dataframes/Series in objs list MUST be pre-sorted by columns listed in `keys`, or by the index (if `by_index=True`). Parameters ---------- objs : list of DataFrame or Series keys : list, default None List of Column names to sort by. If None, all columns used (Ignored if `by_index=True`) by_index : bool, default False Use index for sorting. `keys` input will be ignored if True ignore_index : bool, default False Drop and ignore index during merge. Default range index will be used in the output dataframe. ascending : bool, default True Sorting is in ascending order, otherwise it is descending na_position : {‘first’, ‘last’}, default ‘last’ 'first' nulls at the beginning, 'last' nulls at the end Returns ------- A new, lexicographically sorted, DataFrame/Series. """>warnings.warn(
"merge_sorted is deprecated and will be removed in a ""future release.",
FutureWarning,
)
EFutureWarning: merge_sortedisdeprecatedandwillberemovedinafuturerelease.
../../../miniconda3/envs/gdf/lib/python3.8/site-packages/cudf/core/reshape.py:795: FutureWarning
We intentionally treat warnings as failures in CI to catch such warnings. @madsbk is this something we should fix or should that test be changed or removed?
The text was updated successfully, but these errors were encountered:
There is a cuDF deprecation warning from
merge_sorted
while runningtest_merge_sorted_of_proxied_cudf_dataframes
, see details below:We intentionally treat warnings as failures in CI to catch such warnings. @madsbk is this something we should fix or should that test be changed or removed?
The text was updated successfully, but these errors were encountered: