From c20c8b42215e38bee207b49dad6e28ea04ccbd8c Mon Sep 17 00:00:00 2001 From: Sevag H Date: Wed, 8 Feb 2023 16:50:48 -0500 Subject: [PATCH] Bump pinned rapids wheel deps to 23.4 (#12735) We introduced a change to pin RAPIDS wheel dependencies to the same release version. However, branch 23.04 was created before that last PR was merged, so as of now cudf's 23.4 wheels are installing 23.2 RAPIDS dependencies. This PR updates those pins to the current release. Authors: - Sevag H (https://github.com/sevagh) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) URL: https://github.com/rapidsai/cudf/pull/12735 --- python/cudf/setup.py | 2 +- python/dask_cudf/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/cudf/setup.py b/python/cudf/setup.py index 48199d83478..88bc2cfae28 100644 --- a/python/cudf/setup.py +++ b/python/cudf/setup.py @@ -21,7 +21,7 @@ "typing_extensions", # Allow floating minor versions for Arrow. "pyarrow==10", - f"rmm{cuda_suffix}==23.2.*", + f"rmm{cuda_suffix}==23.4.*", f"ptxcompiler{cuda_suffix}", f"cubinlinker{cuda_suffix}", "cupy-cuda11x", diff --git a/python/dask_cudf/setup.py b/python/dask_cudf/setup.py index 4b420b1b97c..be4c704019d 100644 --- a/python/dask_cudf/setup.py +++ b/python/dask_cudf/setup.py @@ -13,7 +13,7 @@ "fsspec>=0.6.0", "numpy", "pandas>=1.0,<1.6.0dev0", - f"cudf{cuda_suffix}==23.2.*", + f"cudf{cuda_suffix}==23.4.*", "cupy-cuda11x", ]