Skip to content

Commit 8386439

Browse files
authored
Merge pull request #7285 from AyodeAwe/fx-update
Fix missed deps in update-version.sh
1 parent e736d05 commit 8386439

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ci/release/update-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ DEPENDENCIES=(
5757
)
5858
for DEP in "${DEPENDENCIES[@]}"; do
5959
for FILE in dependencies.yaml conda/environments/*.yaml; do
60-
sed_runner "/-.* ${DEP}\(-cu[[:digit:]]\{2\}\)\{0,1\}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}.*,>=0.0.0a0/g" "${FILE}"
60+
sed_runner "/-.* ${DEP}\(-cu[[:digit:]]\{2\}\)\{0,1\}\(\[.*\]\)\{0,1\}==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}.*,>=0.0.0a0/g" "${FILE}"
6161
done
6262
for FILE in python/*/pyproject.toml; do
6363
sed_runner "/\"${DEP}==/ s/==.*\"/==${NEXT_SHORT_TAG_PEP440}.*,>=0.0.0a0\"/g" "${FILE}"

0 commit comments

Comments
 (0)