Skip to content

Commit f63f995

Browse files
authored
Add CUDA 12.6.3 and bump manylinux to 2_28 (#420)
This is a follow up of a commit I forgot to push in the PR #419 So I am taking the freedom to merge without approvals - Add CUDA 12.6.3 to pypi_cache.cuda_versions list - Bump target_manylinux from 2_17 to 2_28 in config and deploy default The manylinux_2_28 tag targets glibc 2.28+ (RHEL 8 / Ubuntu 20.04+), dropping support for older distributions. CUDA 12.6.3 is added to ensure wheels are cached for this widely-used toolkit version. Signed-off-by: Jean Schmidt <contato@jschmidt.me>
1 parent b13c9e4 commit f63f995

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

osdc/clusters.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ defaults:
7777
alloy_chart_version: "1.6.2"
7878
pypi_cache:
7979
cuda_versions:
80+
- "12.6.3"
8081
- "12.8.1"
8182
- "13.0.2"
8283
# NOTE: python_versions is not consumed by manifest generation yet.
@@ -93,7 +94,7 @@ defaults:
9394
target_architectures:
9495
- "x86_64"
9596
- "aarch64"
96-
target_manylinux: "2_17"
97+
target_manylinux: "2_28"
9798

9899
clusters:
99100
arc-staging:

osdc/modules/pypi-cache/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ NAMESPACE=$(uv run "$CFG" "$CLUSTER" pypi_cache.namespace pypi-cache)
3333
INSTANCE_TYPE=$(uv run "$CFG" "$CLUSTER" pypi_cache.instance_type "")
3434
TARGET_PYTHON=$(uv run "$CFG" "$CLUSTER" pypi_cache.python_versions "3.10,3.11,3.12" | tr -d "[]' ")
3535
TARGET_ARCH=$(uv run "$CFG" "$CLUSTER" pypi_cache.target_architectures "x86_64,aarch64" | tr -d "[]' ")
36-
TARGET_MANYLINUX=$(uv run "$CFG" "$CLUSTER" pypi_cache.target_manylinux "2_17")
36+
TARGET_MANYLINUX=$(uv run "$CFG" "$CLUSTER" pypi_cache.target_manylinux "2_28")
3737
LOG_MAX_AGE_DAYS=$(uv run "$CFG" "$CLUSTER" pypi_cache.log_max_age_days "30")
3838
BUCKET=$(uv run "$CFG" "$CLUSTER" state_bucket)
3939
STATE_REGION="us-west-2"

0 commit comments

Comments
 (0)