Skip to content

Commit 499fbe4

Browse files
authored
Exclude librmm.so from auditwheel (#18691)
librmm will ship a shared library component in 25.06 (xref: rapidsai/rmm#1779). This PR updates `auditwheel` calls to exclude `librmm.so`. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Gil Forsyth (https://github.com/gforsyth) URL: #18691
1 parent c8a4deb commit 499fbe4

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

ci/build_wheel_cudf.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ python -m auditwheel repair \
2626
--exclude libnvcomp.so \
2727
--exclude libkvikio.so \
2828
--exclude librapids_logger.so \
29+
--exclude librmm.so \
2930
-w "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}" \
3031
${package_dir}/dist/*
3132

ci/build_wheel_libcudf.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ python -m auditwheel repair \
3939
--exclude libnvcomp.so.4 \
4040
--exclude libkvikio.so \
4141
--exclude librapids_logger.so \
42+
--exclude librmm.so \
4243
-w "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}" \
4344
${package_dir}/dist/*
4445

ci/build_wheel_pylibcudf.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ python -m auditwheel repair \
2424
--exclude libnvcomp.so \
2525
--exclude libkvikio.so \
2626
--exclude librapids_logger.so \
27+
--exclude librmm.so \
2728
-w "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}" \
2829
${package_dir}/dist/*
2930

0 commit comments

Comments
 (0)