|
| 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: 42 # 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: Proposal |
| 14 | +notice_status_color: blue |
| 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-01-27 |
| 24 | +# 'notice_updated' should match 'notice_created' until an update is made |
| 25 | +notice_updated: 2025-01-27 |
| 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 appending |
| 32 | +`--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 `strict_channel_priority`, speeding up |
| 36 | +environment solve times. |
| 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 `--label legacy` is appended to |
| 48 | +the installation command. |
| 49 | + |
| 50 | +e.g. if you are creating an environment like: |
| 51 | + |
| 52 | +```python |
| 53 | +mamba create -n rapids-23.02 rapids=23.02 python=3.10 'cuda-version>=11.4,<=11.8' -c rapidsai -c conda-forge -c nvidia |
| 54 | +``` |
| 55 | + |
| 56 | +you will need to instead run |
| 57 | + |
| 58 | +```python |
| 59 | +mamba create -n rapids-23.02 rapids=23.02 python=3.10 'cuda-version>=11.4,<=11.8' -c rapidsai -c conda-forge -c nvidia --label legacy |
| 60 | +``` |
0 commit comments