Skip to content

Commit

Permalink
Fix 24.04 versions (#14825)
Browse files Browse the repository at this point in the history
Fix `update-version.sh` to include pip `cu` suffixed dependencies

Authors:
  - Ray Douglass (https://github.com/raydouglass)

Approvers:
  - Bradley Dice (https://github.com/bdice)
  - AJ Schmidt (https://github.com/ajschmidt8)

URL: #14825
  • Loading branch information
raydouglass authored Jan 23, 2024
1 parent 0ac0dea commit c9ec9c2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions ci/release/update-version.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright (c) 2020-2023, NVIDIA CORPORATION.
# Copyright (c) 2020-2024, NVIDIA CORPORATION.
########################
# cuDF Version Updater #
########################
Expand Down Expand Up @@ -86,7 +86,7 @@ DEPENDENCIES=(
)
for DEP in "${DEPENDENCIES[@]}"; do
for FILE in dependencies.yaml conda/environments/*.yaml; do
sed_runner "/-.* ${DEP}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}.*/g" ${FILE}
sed_runner "/-.* ${DEP}\(-cu[[:digit:]]\{2\}\)\{0,1\}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}.*/g" "${FILE}"
done
for FILE in python/*/pyproject.toml; do
sed_runner "/\"${DEP}==/ s/==.*\"/==${NEXT_SHORT_TAG_PEP440}.*\"/g" ${FILE}
Expand Down
16 changes: 8 additions & 8 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ dependencies:
matrices:
- matrix: {cuda: "12.*"}
packages: &build_python_packages_cu12
- &rmm_cu12 rmm-cu12==24.2.*
- &rmm_cu12 rmm-cu12==24.4.*
- matrix: {cuda: "11.*"}
packages: &build_python_packages_cu11
- &rmm_cu11 rmm-cu11==24.2.*
- &rmm_cu11 rmm-cu11==24.4.*
- {matrix: null, packages: null }
- output_types: pyproject
matrices:
Expand Down Expand Up @@ -545,11 +545,11 @@ dependencies:
matrices:
- matrix: {cuda: "12.*"}
packages:
- rmm-cu12==24.2.*
- rmm-cu12==24.4.*
- pynvjitlink-cu12
- matrix: {cuda: "11.*"}
packages:
- rmm-cu11==24.2.*
- rmm-cu11==24.4.*
- cubinlinker-cu11
- ptxcompiler-cu11
- {matrix: null, packages: null}
Expand Down Expand Up @@ -677,10 +677,10 @@ dependencies:
matrices:
- matrix: {cuda: "12.*"}
packages:
- cudf-cu12==24.2.*
- cudf-cu12==24.4.*
- matrix: {cuda: "11.*"}
packages:
- cudf-cu11==24.2.*
- cudf-cu11==24.4.*
- {matrix: null, packages: [*cudf_conda]}
depends_on_cudf_kafka:
common:
Expand All @@ -698,10 +698,10 @@ dependencies:
matrices:
- matrix: {cuda: "12.*"}
packages:
- cudf_kafka-cu12==24.2.*
- cudf_kafka-cu12==24.4.*
- matrix: {cuda: "11.*"}
packages:
- cudf_kafka-cu11==24.2.*
- cudf_kafka-cu11==24.4.*
- {matrix: null, packages: [*cudf_kafka_conda]}
depends_on_cupy:
common:
Expand Down

0 comments on commit c9ec9c2

Please sign in to comment.