mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
This reverts commit 42bbde2987
.
This commit is contained in:
parent
b130613143
commit
cce5007285
1 changed files with 8 additions and 0 deletions
|
@ -91,5 +91,13 @@ for ((i=0; i<${#PYTHONS[@]}; ++i)); do
|
||||||
popd
|
popd
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Rename the wheels so that they can be uploaded to PyPI. TODO(rkn): This is a
|
||||||
|
# hack, we should use auditwheel instead.
|
||||||
|
for path in .whl/*.whl; do
|
||||||
|
if [ -f "${path}" ]; then
|
||||||
|
mv "${path}" "${path//linux/manylinux2014}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
# Clean the build output so later operations is on a clean directory.
|
# Clean the build output so later operations is on a clean directory.
|
||||||
git clean -f -f -x -d -e .whl -e python/ray/dashboard/client
|
git clean -f -f -x -d -e .whl -e python/ray/dashboard/client
|
||||||
|
|
Loading…
Add table
Reference in a new issue