Skip to content

Commit c6b9d47

Browse files
youkaichaotjtanaa
authored andcommitted
[ci/build] fix wheel size check (vllm-project#12396)
Signed-off-by: youkaichao <[email protected]>
1 parent a93fa1c commit c6b9d47

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.buildkite/check-wheel-size.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
import sys
33
import zipfile
44

5-
# Read the VLLM_MAX_SIZE_MB environment variable, defaulting to 250 MB
6-
VLLM_MAX_SIZE_MB = int(os.environ.get('VLLM_MAX_SIZE_MB', 250))
5+
# Read the VLLM_MAX_SIZE_MB environment variable, defaulting to 300 MiB
6+
# Note that we have 400 MiB quota, please use it wisely.
7+
# See https://github.com/pypi/support/issues/3792 .
8+
VLLM_MAX_SIZE_MB = int(os.environ.get('VLLM_MAX_SIZE_MB', 300))
79

810

911
def print_top_10_largest_files(zip_file):

0 commit comments

Comments
 (0)