From d244beb67c6cf08716761d22e08077fbebcbb212 Mon Sep 17 00:00:00 2001 From: Divye Gala Date: Thu, 2 Nov 2023 19:07:38 -0400 Subject: [PATCH] Fix `ucx-py` alpha version update for `raft-dask` (#1953) https://github.com/rapidsai/raft/pull/1804 missed updates for `ucx-py` to pick up alpha versioned nightlies Authors: - Divye Gala (https://github.com/divyegala) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/raft/pull/1953 --- ci/build_wheel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build_wheel.sh b/ci/build_wheel.sh index cc90d65709..3dc7740a1e 100755 --- a/ci/build_wheel.sh +++ b/ci/build_wheel.sh @@ -38,7 +38,7 @@ fi if [[ ${package_name} == "raft-dask" ]]; then sed -r -i "s/pylibraft==(.*)\"/pylibraft${PACKAGE_CUDA_SUFFIX}==\1${alpha_spec}\"/g" ${pyproject_file} - sed -i "s/ucx-py/ucx-py${PACKAGE_CUDA_SUFFIX}/g" python/raft-dask/pyproject.toml + sed -r -i "s/ucx-py==(.*)\"/ucx-py${PACKAGE_CUDA_SUFFIX}==\1${alpha_spec}\"/g" ${pyproject_file} else sed -r -i "s/rmm(.*)\"/rmm${PACKAGE_CUDA_SUFFIX}\1${alpha_spec}\"/g" ${pyproject_file} fi