From dcfc9b2c34c1d99fb6befd98c5e1121ff683d33c Mon Sep 17 00:00:00 2001 From: youkaichao Date: Thu, 30 May 2024 06:29:48 -0700 Subject: [PATCH] [CI/Build] increase wheel size limit to 200 MB (#5130) --- .buildkite/check-wheel-size.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/check-wheel-size.py b/.buildkite/check-wheel-size.py index 41d9e682572a6..75ad094fa1382 100644 --- a/.buildkite/check-wheel-size.py +++ b/.buildkite/check-wheel-size.py @@ -1,7 +1,7 @@ import os import zipfile -MAX_SIZE_MB = 150 +MAX_SIZE_MB = 200 def print_top_10_largest_files(zip_file):