From ea8d98cb718ed0fe12a04296dd67d5a011257473 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 21 Jan 2025 16:53:54 -0800 Subject: [PATCH] use wildcards in auditwheel exclusions --- ci/build_wheel.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ci/build_wheel.sh b/ci/build_wheel.sh index 40a9f85bbc7..6766eaaa244 100755 --- a/ci/build_wheel.sh +++ b/ci/build_wheel.sh @@ -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