From b72fa16f07ce2fbb60257a0cf50d01820140bfa0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 09:52:30 -0500 Subject: [PATCH 1/3] Update dependency cli/cli to v2.57.0 (#193) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- versions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.yaml b/versions.yaml index fbc5c68..648c284 100644 --- a/versions.yaml +++ b/versions.yaml @@ -3,7 +3,7 @@ # prefer sticking with a stable version until a specific reason to update arises. SCCACHE_VER: 0.7.7 # renovate: datasource=github-releases depName=cli/cli -GH_CLI_VER: 2.55.0 +GH_CLI_VER: 2.57.0 # renovate: datasource=pypi depName=codecov-cli CODECOV_VER: 0.7.4 # renovate: datasource=docker depName=mikefarah/yq versioning=docker From e7ddf33791cf7f6af2f7f18cbfee6dee319f6857 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 12:29:13 -0500 Subject: [PATCH 2/3] Update amazon/aws-cli Docker tag to v2.17.62 (#191) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: James Lamb --- versions.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions.yaml b/versions.yaml index 648c284..f8ce290 100644 --- a/versions.yaml +++ b/versions.yaml @@ -9,4 +9,4 @@ CODECOV_VER: 0.7.4 # renovate: datasource=docker depName=mikefarah/yq versioning=docker YQ_VER: 4.44.3 # renovate: datasource=docker depName=amazon/aws-cli versioning=docker -AWS_CLI_VER: 2.17.44 +AWS_CLI_VER: 2.17.62 From 7b059588a18d8fabcec3995f6129493fbab7e831 Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 2 Oct 2024 11:04:04 -0500 Subject: [PATCH 3/3] Drop Python 3.9, simplify ci-wheel matrix (only oldest glibc and latest CUDA of each major version). (#194) --- matrix.yaml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/matrix.yaml b/matrix.yaml index eb0d503..8134904 100644 --- a/matrix.yaml +++ b/matrix.yaml @@ -5,7 +5,6 @@ CUDA_VER: - "12.2.2" - "12.5.1" PYTHON_VER: - - "3.9" - "3.10" - "3.11" - "3.12" @@ -31,12 +30,20 @@ exclude: - LINUX_VER: "ubuntu22.04" CUDA_VER: "11.4.3" - # exclude citestwheel and ci-wheel for cuda versions other than 11.8.0, 12.0.1, and 12.2.2 - - CUDA_VER: "11.4.3" - IMAGE_REPO: "citestwheel" + # Only build ci-wheel for the latest CUDA of each major version - CUDA_VER: "11.4.3" IMAGE_REPO: "ci-wheel" + - CUDA_VER: "12.0.1" + IMAGE_REPO: "ci-wheel" + - CUDA_VER: "12.2.2" + IMAGE_REPO: "ci-wheel" - # exclude ci-wheel for ubuntu22.04 + # Only build ci-wheel for the oldest glibc (rockylinux8) + - LINUX_VER: "ubuntu20.04" + IMAGE_REPO: "ci-wheel" - LINUX_VER: "ubuntu22.04" IMAGE_REPO: "ci-wheel" + + # Exclude citestwheel for CUDA versions older than 11.8.0 + - CUDA_VER: "11.4.3" + IMAGE_REPO: "citestwheel"