We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93fa1c commit c6b9d47Copy full SHA for c6b9d47
.buildkite/check-wheel-size.py
@@ -2,8 +2,10 @@
2
import sys
3
import zipfile
4
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))
+# Read the VLLM_MAX_SIZE_MB environment variable, defaulting to 300 MiB
+# 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))
9
10
11
def print_top_10_largest_files(zip_file):
0 commit comments