From 48255edee6c90dc06a1df1e28c6e6cce3061bc5d Mon Sep 17 00:00:00 2001 From: Kyle Edwards Date: Thu, 14 May 2026 18:24:23 -0400 Subject: [PATCH] Enforce smaller wheel sizes Ensure that the wheel sizes do not creep back above these thresholds and hold onto our hard-won size savings. --- ci/validate_wheel.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/validate_wheel.sh b/ci/validate_wheel.sh index 2b41876d0b..677f3a63f1 100755 --- a/ci/validate_wheel.sh +++ b/ci/validate_wheel.sh @@ -21,11 +21,11 @@ PYDISTCHECK_ARGS=( if [[ "${package_dir}" == "python/libcuvs" ]]; then if [[ "${RAPIDS_CUDA_MAJOR}" == "12" ]]; then PYDISTCHECK_ARGS+=( - --max-allowed-size-compressed '400Mi' + --max-allowed-size-compressed '350Mi' ) else PYDISTCHECK_ARGS+=( - --max-allowed-size-compressed '250Mi' + --max-allowed-size-compressed '220Mi' ) fi elif [[ "${package_dir}" != "python/cuvs" ]]; then