Unverified Commit 9f2c383f authored by Casper's avatar Casper Committed by GitHub
Browse files

Exclude download of CUDA wheels (#159)

parent 9f9ce41f
......@@ -9,10 +9,12 @@ mkdir -p dist
cd dist
# Download all the wheel files from the GitHub release
# excluding ones with '+cu' (%2B is + but encoded)
curl -s $RELEASE_URL | \
jq -r ".assets[].browser_download_url" | \
grep '\.whl' | \
xargs -n 1 wget
grep -v '%2Bcu' | \
xargs -n 1 -P 4 wget
# Rename the wheels from 'linux_x86_64' to 'manylinux_x86_64'
for file in *linux_x86_64.whl; do
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment