Skip to content

Commit 786dc8c

Browse files
gforsythbdice
andauthored
RSN for conda package legacy labelling (#570)
* Add notice for conda package `legacy` labelling * Update _notices/rsn0042.md Co-authored-by: Bradley Dice <bdice@bradleydice.com> * Use correct label command * Update _notices/rsn0042.md Co-authored-by: Bradley Dice <bdice@bradleydice.com> * Remove blank line * rename file * address review comments * Rename to RSN 44 * Update dates * Small updates to fix RSN 42 status and formatting. * Update notice status --------- Co-authored-by: Bradley Dice <bdice@bradleydice.com>
1 parent dfccb89 commit 786dc8c

File tree

2 files changed

+65
-3
lines changed

2 files changed

+65
-3
lines changed

_notices/rsn0042.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ notice_id: 42 # should match notice number
99
notice_pin: true # set to true to pin to notice page
1010
title: "RAPIDS 25.02 replaces CUDA 12.5 with CUDA 12.8 in our Docker Images"
1111
notice_author: RAPIDS Ops
12-
notice_status: yellow
13-
notice_status_color: yellow
12+
notice_status: "Completed"
13+
notice_status_color: green
1414
# 'notice_status' and 'notice_status_color' combinations:
1515
# "Proposal" - "blue"
1616
# "Completed" - "green"
@@ -26,7 +26,9 @@ notice_updated: 2025-02-03
2626

2727
## Overview
2828

29-
RAPIDS is removing support for CUDA 12.5 Docker containers in Release `v25.02`, and will cease publishing CUDA 12.5 Docker containers before the `v25.02` release. The CUDA 12.5 containers will be replaced by CUDA 12.8 containers. We are continuing support for CUDA 11.8 and 12.0 containers.
29+
RAPIDS is removing support for CUDA 12.5 Docker containers in Release `v25.02`, and will cease publishing CUDA 12.5 Docker containers before the `v25.02` release.
30+
The CUDA 12.5 containers will be replaced by CUDA 12.8 containers.
31+
We are continuing support for CUDA 11.8 and 12.0 containers.
3032

3133
## Impact
3234

_notices/rsn0044.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
layout: notice
3+
parent: RAPIDS Support Notices
4+
grand_parent: RAPIDS Notices
5+
nav_exclude: true
6+
notice_type: rsn
7+
# Update meta-data for notice
8+
notice_id: 44 # should match notice number
9+
notice_pin: true # set to true to pin to notice page
10+
11+
title: "Moving older RAPIDS conda packages to a `legacy` label"
12+
notice_author: RAPIDS Ops
13+
notice_status: In Progress
14+
notice_status_color: yellow
15+
# 'notice_status' and 'notice_status_color' combinations:
16+
# "Proposal" - "blue"
17+
# "Completed" - "green"
18+
# "Review" - "purple"
19+
# "In Progress" - "yellow"
20+
# "Closed" - "red"
21+
notice_topic: Platform Support Change
22+
notice_rapids_version: "<=v23.02"
23+
notice_created: 2025-04-09
24+
# 'notice_updated' should match 'notice_created' until an update is made
25+
notice_updated: 2025-04-09
26+
---
27+
28+
## Overview
29+
30+
RAPIDS will move certain older conda packages in the `rapidsai` conda channel
31+
under a new label: `legacy`. These packages will still be available by adding
32+
`-c rapidsai/label/legacy` to installation and search commands.
33+
34+
By moving these packages out of the main portion of the channel, newer RAPIDS
35+
conda environments will be solvable with `channel_priority: strict`, speeding up
36+
environment solve times and providing stronger correctness guarantees.
37+
38+
All RAPIDS conda install commands for RAPIDS versions `v23.04+` will continue to
39+
work without any user intervention.
40+
41+
This change will occur concurrently with the release of RAPIDS `v25.04`.
42+
43+
44+
## Impact
45+
46+
RAPIDS environments installed using `conda` or `mamba`, for environments older
47+
than RAPIDS `v23.04` will fail to install unless `-c rapidsai/label/legacy` is
48+
added to the installation command.
49+
50+
e.g. if you are creating an environment like:
51+
52+
```shell
53+
mamba create -n rapids-23.02 -c rapidsai -c conda-forge -c nvidia rapids=23.02 python=3.10 'cuda-version>=11.4,<=11.8'
54+
```
55+
56+
you will need to instead run
57+
58+
```shell
59+
mamba create -n rapids-23.02 -c rapidsai -c rapidsai/label/legacy -c conda-forge -c nvidia rapids=23.02 python=3.10 'cuda-version>=11.4,<=11.8'
60+
```

0 commit comments

Comments
 (0)