From a66babdf1c736a20d2d891d0e64da73c8ab1bba4 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 9 Sep 2024 14:05:30 -0500 Subject: [PATCH] update 'latest' tags to Python 3.12 images --- README.md | 8 ++++---- latest.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 4bbc4b0..70c76ae 100644 --- a/README.md +++ b/README.md @@ -12,12 +12,12 @@ The `latest` image tags are controlled by the values in `latest.yaml`. ## Building the dockerfiles locally -To easily build the dockerfiles locally, you may use the following snippets: +To build the dockerfiles locally, you may use the following snippets: ```sh export LINUX_VER=ubuntu22.04 -export CUDA_VER=12.2.2 -export PYTHON_VER=3.11 +export CUDA_VER=12.5.1 +export PYTHON_VER=3.12 export ARCH=amd64 export IMAGE_REPO=ci-conda docker build $(ci/compute-build-args.sh) -f ci-conda.Dockerfile context/ @@ -35,5 +35,5 @@ then pushes them on to the individual repos like `rapidsai/base`, `rapidsai/note A scheduled job regularly deletes old images from that `rapidsai/staging` repo. See https://github.com/rapidsai/workflows/blob/main/.github/workflows/cleanup_staging.yaml for details. -If you come back to a pull requests here after more than a few days and find that jobs are failing with errors +If you come back to a pull request here after more than a few days and find that jobs are failing with errors that suggest that some necessary images don't exist, re-run all of CI on that pull request to produce new images. diff --git a/latest.yaml b/latest.yaml index 6f56207..80f76e0 100644 --- a/latest.yaml +++ b/latest.yaml @@ -1,18 +1,18 @@ # Define the values used for the "latest" tag miniforge-cuda: CUDA_VER: "12.5.1" - PYTHON_VER: "3.11" + PYTHON_VER: "3.12" LINUX_VER: "ubuntu22.04" ci-conda: CUDA_VER: "12.5.1" - PYTHON_VER: "3.11" + PYTHON_VER: "3.12" LINUX_VER: "ubuntu22.04" ci-wheel: CUDA_VER: "12.5.1" - PYTHON_VER: "3.11" + PYTHON_VER: "3.12" # Wheels should always be built with the oldest supported glibc version LINUX_VER: "rockylinux8" citestwheel: CUDA_VER: "12.5.1" - PYTHON_VER: "3.11" + PYTHON_VER: "3.12" LINUX_VER: "ubuntu22.04"