Skip to content

Commit

Permalink
update update-version.sh to use packaging lib (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
AyodeAwe authored Sep 24, 2024
1 parent bd8e45b commit 74c365d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/release/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function sed_runner() {
echo "${NEXT_FULL_TAG}" > VERSION

# Need to distutils-normalize the original version
NEXT_SHORT_TAG_PEP440=$(python -c "from setuptools.extern import packaging; print(packaging.version.Version('${NEXT_SHORT_TAG}'))")
NEXT_SHORT_TAG_PEP440=$(python -c "from packaging.version import Version; print(Version('${NEXT_SHORT_TAG}'))")

DEPENDENCIES=(
cudf
Expand Down

0 comments on commit 74c365d

Please sign in to comment.