From 3643310105f83215d8b08b35122848fcd9caefcb Mon Sep 17 00:00:00 2001 From: Anton <100830759+antonwolfy@users.noreply.github.com> Date: Fri, 3 Jan 2025 14:18:01 +0100 Subject: [PATCH] Bump dpctl quota on dppy channel Recently there was support of new python 3.13 added into dpctl. It requires about 120 MB extra in storage to upload the new conda and wheels packages with python 3.13. The current quota is not able to fit all the packages with the latest dpctl version. It results that every time dpctl is tiring to upload the packages, they will be cleaned up by that script. The PR proposes to bump the quota to consider new dpctl requirement with python 3.13 support. --- scripts/cleanup-old-packages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cleanup-old-packages.py b/scripts/cleanup-old-packages.py index 7c1ce98..6e2d964 100644 --- a/scripts/cleanup-old-packages.py +++ b/scripts/cleanup-old-packages.py @@ -18,7 +18,7 @@ QUOTAS = { # lets try keeping at least 1Gb free. Total quota is 3Gb - "dppy/dpctl": 512 * 1024 * 1024, + "dppy/dpctl": (512 + 128) * 1024 * 1024, "dppy/dpnp": (512 - 128) * 1024 * 1024, "dppy/numba-dpex": 256 * 1024 * 1024, "dppy/numba-mlir": 512 * 1024 * 1024,