Skip to content

Commit

Permalink
update all references to release versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AjayThorve committed Nov 10, 2023
1 parent 24d3465 commit a02e0f8
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 a02e0f8

Please sign in to comment.