Skip to content

Commit 3643310

Browse files
authored
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.
1 parent f730638 commit 3643310

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/cleanup-old-packages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
QUOTAS = {
2020
# lets try keeping at least 1Gb free. Total quota is 3Gb
21-
"dppy/dpctl": 512 * 1024 * 1024,
21+
"dppy/dpctl": (512 + 128) * 1024 * 1024,
2222
"dppy/dpnp": (512 - 128) * 1024 * 1024,
2323
"dppy/numba-dpex": 256 * 1024 * 1024,
2424
"dppy/numba-mlir": 512 * 1024 * 1024,

0 commit comments

Comments
 (0)