Skip to content

Commit

Permalink
Skips running auditwheel on nx-cugraph wheel.
Browse files Browse the repository at this point in the history
  • Loading branch information
rlratzel committed Sep 22, 2023
1 parent 52ffb67 commit f79f231
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ cd "${package_dir}"
python -m pip wheel . -w dist -vvv --no-deps --disable-pip-version-check

mkdir -p final_dist
python -m auditwheel repair -w final_dist dist/*

# nx-cugraph is a pure-python package and should not have auditwheel run on it.
if [[ ${package_name} != "nx-cugraph" ]]; then
python -m auditwheel repair -w final_dist dist/*
fi

RAPIDS_PY_WHEEL_NAME="${package_name}_${RAPIDS_PY_CUDA_SUFFIX}" rapids-upload-wheels-to-s3 final_dist

0 comments on commit f79f231

Please sign in to comment.