From f758505c736ce53a13567852594c3e05215bb6b2 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 41d9e682..75ad094f 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):