Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix ucx-py version pinning in dependencies.yaml. #2035

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ci/release/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ for FILE in dependencies.yaml conda/environments/*.yaml; do
sed_runner "/-.* ${DEP}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}\.*/g" ${FILE};
done
sed_runner "/-.* ucx-py==/ s/==.*/==${NEXT_UCX_PY_SHORT_TAG_PEP440}\.*/g" ${FILE};
sed_runner "/-.* ucx-py-cu11==/ s/==.*/==${NEXT_UCX_PY_SHORT_TAG_PEP440}\.*/g" ${FILE};
sed_runner "/-.* ucx-py-cu12==/ s/==.*/==${NEXT_UCX_PY_SHORT_TAG_PEP440}\.*/g" ${FILE};
done
for FILE in python/*/pyproject.toml; do
for DEP in "${DEPENDENCIES[@]}"; do
Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -461,13 +461,13 @@ dependencies:
- matrix: {cuda: "12.2"}
packages: &run_raft_dask_packages_cu12
- &pylibraft_cu12 pylibraft-cu12==24.2.*
- &ucx_py_cu12 ucx-py-cu12==0.35.*
- &ucx_py_cu12 ucx-py-cu12==0.36.*
- {matrix: {cuda: "12.1"}, packages: *run_raft_dask_packages_cu12}
- {matrix: {cuda: "12.0"}, packages: *run_raft_dask_packages_cu12}
- matrix: {cuda: "11.8"}
packages: &run_raft_dask_packages_cu11
- &pylibraft_cu11 pylibraft-cu11==24.2.*
- &ucx_py_cu11 ucx-py-cu11==0.35.*
- &ucx_py_cu11 ucx-py-cu11==0.36.*
- {matrix: {cuda: "11.5"}, packages: *run_raft_dask_packages_cu11}
- {matrix: {cuda: "11.4"}, packages: *run_raft_dask_packages_cu11}
- {matrix: {cuda: "11.2"}, packages: *run_raft_dask_packages_cu11}
Expand Down