Skip to content

Commit

Permalink
fix unbound var
Browse files Browse the repository at this point in the history
  • Loading branch information
divyegala committed Oct 30, 2023
1 parent aa6be3f commit 5a54f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ echo "${version}" | tr -d '"' > VERSION
package_dir="python"
for package_name in pylibraft raft-dask; do
underscore_package_name=$(echo "${package_name}" | tr "-" "_")
sed -i "/^__git_commit__/ s/= .*/= \"${commit}\"/g" "${package_dir}/${package_name}/${underscore_package_name}/_version.py"
sed -i "/^__git_commit__/ s/= .*/= \"${git_commit}\"/g" "${package_dir}/${package_name}/${underscore_package_name}/_version.py"
done

# TODO: Remove `--no-test` flags once importing on a CPU
Expand Down

0 comments on commit 5a54f71

Please sign in to comment.