"vscode:/vscode.git/clone" did not exist on "18f030d940250f54dce478b6a67ac3755c2b3daf"
Unverified Commit c7c98510 authored by youkaichao's avatar youkaichao Committed by GitHub
Browse files

[ci/build] fix wheel size check (#12396)


Signed-off-by: default avataryoukaichao <youkaichao@gmail.com>
parent 3c818bdb
...@@ -2,8 +2,10 @@ import os ...@@ -2,8 +2,10 @@ import os
import sys import sys
import zipfile import zipfile
# Read the VLLM_MAX_SIZE_MB environment variable, defaulting to 250 MB # Read the VLLM_MAX_SIZE_MB environment variable, defaulting to 300 MiB
VLLM_MAX_SIZE_MB = int(os.environ.get('VLLM_MAX_SIZE_MB', 250)) # Note that we have 400 MiB quota, please use it wisely.
# See https://github.com/pypi/support/issues/3792 .
VLLM_MAX_SIZE_MB = int(os.environ.get('VLLM_MAX_SIZE_MB', 300))
def print_top_10_largest_files(zip_file): def print_top_10_largest_files(zip_file):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment