Skip to content

Commit

Permalink
update 'latest' tags to Python 3.12 images (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb authored Sep 17, 2024
1 parent 39fcfcf commit 0b91078
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand All @@ -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.
8 changes: 4 additions & 4 deletions latest.yaml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 0b91078

Please sign in to comment.