Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
# SPDX-License-Identifier: Apache-2.0
# Define the values used for the "latest" tag
ci-conda:
CUDA_VER: "13.1.1"
CUDA_VER: "13.2.1"
PYTHON_VER: "3.14"
LINUX_VER: "ubuntu24.04"
ci-wheel:
CUDA_VER: "13.0.2"
CUDA_VER: "13.0.3"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
CUDA_VER: "13.0.3"
CUDA_VER: "13.3.0"

Shouldn't this also be 13.3.0?

@bdice bdice Jun 9, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ci-wheel is pinned to 13.0.x for (painful) reasons described in rapidsai/build-planning#257 and rapidsai/build-planning#268.

Also the conda images pinned in latest.yaml should be 13.2.1 and not 13.3.0 because we haven't completed the 13.3 migration yet. We only roll the latest.yaml forward once the migration is complete (this was missed in the 13.2 migration).

PYTHON_VER: "3.14"
# Wheels should always be built with the oldest supported glibc version
LINUX_VER: "rockylinux8"
citestwheel:
CUDA_VER: "13.1.1"
CUDA_VER: "13.2.1"
PYTHON_VER: "3.14"
LINUX_VER: "ubuntu24.04"
8 changes: 4 additions & 4 deletions matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# SPDX-License-Identifier: Apache-2.0
CUDA_VER:
- "12.2.2"
- "12.9.1"
- "13.0.2"
- "13.1.1"
- "13.2.0"
- "12.9.2"
- "13.0.3"
Comment on lines +5 to +6

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it could be ok to take these minor pins, let's do this.

But we shoudn't move up our floors on nvidia-nvjitlink in wheels.

torch CUDA 12.9 wheels are pinned to cuda-toolkit[nvjitlink]==12.9.1, so a requirement like nvidia-nvjitlink>=12.9.2 would be a problem for compatibility. Hopefully using system-provided libnvJitLink from the 12.9.2 images and a runtime requirement like nvidia-nvjitlink-cu12>=12.9 (like we have throughout RAPIDS) should continue to be fine.

- "13.2.1"
- "13.3.0"
PYTHON_VER:
- "3.11"
- "3.12"
Expand Down