We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab19bb2 + 63015e5 commit 387b573Copy full SHA for 387b573
.github/workflows/posix.yml
@@ -111,8 +111,8 @@ jobs:
111
- name: Build and test wheel
112
run: |
113
if [[ "$NIGHTLY" = "true" ]]; then
114
- # Set the pyproject.toml version
115
- version = $(cd OpenBLAS && git describe --tags --abbrev=8 | sed -e "s/^v\(.*\)-g.*/\1/")
+ # Set the pyproject.toml version: convert v0.3.24-30-g138ed79f to 0.3.34.30
+ version=$(cd OpenBLAS && git describe --tags --abbrev=8 | sed -e "s/^v\(.*\)-g.*/\1/" | sed -e "s/-/./g")
116
sed -e "s/^version = .*/version = ${version}/" -i.bak pyproject.toml
117
fi
118
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
0 commit comments