File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,8 @@ NEXT_FULL_TAG=$1
13
13
# Get <major>.<minor> for next version
14
14
NEXT_MAJOR=$( echo " $NEXT_FULL_TAG " | awk ' {split($0, a, "."); print a[1]}' )
15
15
NEXT_MINOR=$( echo " $NEXT_FULL_TAG " | awk ' {split($0, a, "."); print a[2]}' )
16
- NEXT_PATCH=$( echo " $NEXT_FULL_TAG " | awk ' {split($0, a, "."); print a[3]}' )
17
16
NEXT_SHORT_TAG=${NEXT_MAJOR} .${NEXT_MINOR}
18
17
19
- # Need to distutils-normalize the versions for some use cases
20
- NEXT_SHORT_TAG_PEP440=$( python -c " from packaging.version import Version; print(Version('${NEXT_SHORT_TAG} '))" )
21
- PATCH_PEP440=$( python -c " from packaging.version import Version; print(Version('${NEXT_PATCH} '))" )
22
-
23
18
echo " Updating RAPIDS versions to $NEXT_FULL_TAG "
24
19
25
20
# Inplace sed replace; workaround for Linux and Mac
You can’t perform that action at this time.
0 commit comments