From 549bc242ada51e17972363dab08631e41d068815 Mon Sep 17 00:00:00 2001 From: brandon-b-miller Date: Sat, 16 Aug 2025 11:10:47 -0700 Subject: [PATCH 1/2] bump version --- ci/test_thirdparty.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ci/test_thirdparty.sh b/ci/test_thirdparty.sh index 6f595cf98..8667d4a04 100755 --- a/ci/test_thirdparty.sh +++ b/ci/test_thirdparty.sh @@ -6,9 +6,10 @@ set -euo pipefail CUDA_VER_MAJOR_MINOR=${CUDA_VER%.*} rapids-logger "Install cuDF Wheel" + pip install \ - --extra-index-url=https://pypi.nvidia.com \ - "cudf-cu12==25.6.*" + --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple \ + "cudf-cu12>=25.10.0a0,<=25.10" "dask-cuda>=25.10.0a0,<=25.10" rapids-logger "Remove Extraneous numba-cuda" @@ -25,7 +26,7 @@ python -m pip install \ rapids-logger "Shallow clone cuDF repository" -git clone --single-branch --branch 'branch-25.06' https://github.com/rapidsai/cudf.git +git clone --single-branch --branch 'branch-25.10' https://github.com/rapidsai/cudf.git pushd cudf From 4cda01677762a3769409c541eae77396d6665b2d Mon Sep 17 00:00:00 2001 From: brandon-b-miller Date: Mon, 18 Aug 2025 06:00:06 -0700 Subject: [PATCH 2/2] path update --- ci/test_thirdparty.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_thirdparty.sh b/ci/test_thirdparty.sh index 8667d4a04..4260c89d1 100755 --- a/ci/test_thirdparty.sh +++ b/ci/test_thirdparty.sh @@ -41,6 +41,6 @@ rapids-logger "Run Scalar UDF tests" python -m pytest python/cudf/cudf/tests/test_udf_masked_ops.py -W ignore::UserWarning rapids-logger "Run GroupBy UDF tests" -python -m pytest python/cudf/cudf/tests/test_groupby.py -k test_groupby_apply_jit -W ignore::UserWarning +python -m pytest python/cudf/cudf/tests/groupby/test_apply.py -k test_groupby_apply_jit -W ignore::UserWarning popd