Skip to content

Commit

Permalink
use wildcards in auditwheel exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Jan 22, 2025
1 parent a9c923b commit ea8d98c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ EXCLUDE_ARGS=(
# 'libraft' wheels are responsible for carrying a runtime dependency on
# these based on RAFT's needs.
EXCLUDE_ARGS+=(
--exclude "libcublas.so.12"
--exclude "libcublasLt.so.12"
--exclude "libcurand.so.10"
--exclude "libcusolver.so.11"
--exclude "libcusparse.so.12"
--exclude "libnvJitLink.so.12"
--exclude "libcublas.so.*"
--exclude "libcublasLt.so.*"
--exclude "libcurand.so.*"
--exclude "libcusolver.so.*"
--exclude "libcusparse.so.*"
--exclude "libnvJitLink.so.*"
)

if [[ "${package_dir}" != "python/libcugraph" ]]; then
Expand Down

0 comments on commit ea8d98c

Please sign in to comment.