Skip to content

Commit

Permalink
Fix path (#1277)
Browse files Browse the repository at this point in the history
The `package_name` variable was not set here, so the git commit was never actually overwritten.

Authors:
  - Vyas Ramasubramani (https://github.com/vyasr)

Approvers:
  - Ray Douglass (https://github.com/raydouglass)

URL: #1277
  • Loading branch information
vyasr authored Nov 16, 2023
1 parent d026d6e commit 21e11bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build_python_pypi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fi
sed -r -i "s/rapids-dask-dependency==(.*)\"/rapids-dask-dependency==\1${alpha_spec}\"/g" pyproject.toml

echo "${version}" | tr -d '"' > VERSION
sed -i "/^__git_commit__/ s/= .*/= \"${commit}\"/g" "${package_name}/_version.py"
sed -i "/^__git_commit__/ s/= .*/= \"${commit}\"/g" "dask_cuda/_version.py"

# Compute/export RAPIDS_DATE_STRING
source rapids-env-update
Expand Down

0 comments on commit 21e11bf

Please sign in to comment.