@@ -9,8 +9,8 @@ CUDA_VER_MAJOR_MINOR=${CUDA_VER%.*}
99rapids-logger " Install cuDF Wheel"
1010
1111pip install \
12- --extra-index-url=https://pypi.anaconda.org/rapidsai-wheels-nightly/simple \
13- " cudf-cu12>=25.10.0a0,< =25.10" " dask-cuda>=25.10.0a0,<=25.10 "
12+ --extra-index-url=https://pypi.nvidia.com \
13+ " cudf-cu12= =25.10.* "
1414
1515
1616rapids-logger " Remove Extraneous numba-cuda"
@@ -20,10 +20,12 @@ rapids-logger "Install wheel with test dependencies"
2020package=$( realpath wheel/numba_cuda* .whl)
2121echo " Package path: ${package} "
2222python -m pip install \
23- " ${package} [test] " \
23+ " ${package} " \
2424 " cuda-python==${CUDA_VER_MAJOR_MINOR% .* } .*" \
2525 " cuda-core==0.3.*" \
2626 " nvidia-nvjitlink-cu12" \
27+ --group test
28+
2729
2830
2931rapids-logger " Shallow clone cuDF repository"
@@ -39,13 +41,13 @@ rapids-logger "Show Numba system info"
3941python -m numba --sysinfo
4042
4143rapids-logger " Run Scalar UDF tests"
42- python -m pytest python/cudf/cudf/tests/dataframe/methods/test_apply.py -W ignore::UserWarning -W ignore::DeprecationWarning:numba.cuda.core.config
44+ python -m pytest python/cudf/cudf/tests/dataframe/methods/test_apply.py -W ignore::UserWarning
4345
4446rapids-logger " Run GroupBy UDF tests"
45- python -m pytest python/cudf/cudf/tests/groupby/test_apply.py -k test_groupby_apply_jit -W ignore::UserWarning -W ignore::DeprecationWarning:numba.cuda.core.config
47+ python -m pytest python/cudf/cudf/tests/groupby/test_apply.py -k test_groupby_apply_jit -W ignore::UserWarning
4648
4749rapids-logger " Run NRT Stats Counting tests"
48- python -m pytest python/cudf/cudf/tests/private_objects/test_nrt_stats.py -W ignore::UserWarning -W ignore::DeprecationWarning:numba.cuda.core.config
50+ python -m pytest python/cudf/cudf/tests/private_objects/test_nrt_stats.py -W ignore::UserWarning
4951
5052
5153popd
0 commit comments