Skip to content

Commit

Permalink
update all references to release versions (#550)
Browse files Browse the repository at this point in the history
This PR fixes the `ci/release/update-version.sh`  script, that updates the missing release version updates in some files.

cc @raydouglass

Authors:
   - Ajay Thorve (https://github.com/AjayThorve)

Approvers:
   - Ray Douglass (https://github.com/raydouglass)
  • Loading branch information
AjayThorve authored Nov 14, 2023
1 parent f8d0433 commit 912fe60
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions ci/release/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,18 @@ echo "${NEXT_FULL_TAG}" > VERSION

DEPENDENCIES=(
cudf
cuxfilter
dask-cuda
dask-cudf
cugraph
cuspatial
)
for FILE in dependencies.yaml conda/environments/*.yaml ci/utils/external_dependencies.yaml; do
for DEP in "${DEPENDENCIES[@]}"; do
sed_runner "/-.* ${DEP}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}.*/g" ${FILE};
for DEP in "${DEPENDENCIES[@]}"; do
for FILE in dependencies.yaml conda/environments/*.yaml ci/utils/external_dependencies.yaml; do
sed_runner "/-.* ${DEP}==/ 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}
done
done

Expand Down

0 comments on commit 912fe60

Please sign in to comment.