Skip to content

Commit 461e478

Browse files
committed
Fix case where YAML anchors are used, add pylibraft.
1 parent 4c2b6f1 commit 461e478

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

ci/release/update-version.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,14 @@ sed_runner 's/release = .*/release = '"'${NEXT_FULL_TAG}'"'/g' docs/source/conf.
5656

5757
DEPENDENCIES=(
5858
dask-cuda
59+
pylibraft
5960
rmm
6061
)
6162
for FILE in dependencies.yaml conda/environments/*.yaml; do
6263
for DEP in "${DEPENDENCIES[@]}"; do
63-
sed_runner "/- ${DEP}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}\.*/g" ${FILE};
64+
sed_runner "/ ${DEP}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}\.*/g" ${FILE};
6465
done
65-
sed_runner "/- ucx-py==/ s/==.*/==${NEXT_UCX_PY_SHORT_TAG_PEP440}\.*/g" ${FILE};
66+
sed_runner "/ ucx-py==/ s/==.*/==${NEXT_UCX_PY_SHORT_TAG_PEP440}\.*/g" ${FILE};
6667
done
6768

6869
sed_runner "/^ucx_py_version:$/ {n;s/.*/ - \"${NEXT_UCX_PY_VERSION}\"/}" conda/recipes/raft-dask/conda_build_config.yaml

conda/environments/all_cuda-118_arch-x86_64.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ dependencies:
5454
- sphinx-markdown-tables
5555
- sysroot_linux-64==2.17
5656
- ucx-proc=*=gpu
57-
- ucx-py=0.33.*
57+
- ucx-py==0.33.*
5858
- ucx>=1.13.0
5959
name: all_cuda-118_arch-x86_64

dependencies.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ dependencies:
136136
- output_types: [conda, requirements, pyproject]
137137
packages:
138138
- &cuda_python cuda-python>=11.7.1,<12.0
139-
- &rmm rmm==23.6.*
139+
- &rmm rmm==23.8.*
140140
checks:
141141
common:
142142
- output_types: [conda, requirements]
@@ -276,15 +276,15 @@ dependencies:
276276
- joblib>=0.11
277277
- numba>=0.49
278278
- *numpy
279-
- ucx-py=0.33.*
279+
- ucx-py==0.33.*
280280
- output_types: conda
281281
packages:
282282
- dask-core==2023.3.2
283283
- ucx>=1.13.0
284284
- ucx-proc=*=gpu
285285
- output_types: pyproject
286286
packages:
287-
- pylibraft==23.6.*
287+
- pylibraft==23.8.*
288288
test_python_common:
289289
common:
290290
- output_types: [conda, requirements, pyproject]

0 commit comments

Comments
 (0)