Skip to content

Commit 078c924

Browse files
committed
DOC v25.10 Updates [skip ci]
1 parent 296a492 commit 078c924

File tree

10 files changed

+41
-41
lines changed

10 files changed

+41
-41
lines changed

.devcontainer/cuda12.9-conda/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"args": {
66
"CUDA": "12.9",
77
"PYTHON_PACKAGE_MANAGER": "conda",
8-
"BASE": "rapidsai/devcontainers:25.08-cpp-mambaforge-ubuntu22.04"
8+
"BASE": "rapidsai/devcontainers:25.10-cpp-mambaforge-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.08-cuda12.9-conda"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.10-cuda12.9-conda"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
18-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.8": {}
18+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.10": {}
1919
},
2020
"overrideFeatureInstallOrder": [
2121
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.devcontainer/cuda12.9-pip/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"args": {
66
"CUDA": "12.9",
77
"PYTHON_PACKAGE_MANAGER": "pip",
8-
"BASE": "rapidsai/devcontainers:25.08-cpp-cuda12.9-ubuntu22.04"
8+
"BASE": "rapidsai/devcontainers:25.10-cpp-cuda12.9-ubuntu22.04"
99
}
1010
},
1111
"runArgs": [
1212
"--rm",
1313
"--name",
14-
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.08-cuda12.9-pip"
14+
"${localEnv:USER:anon}-rapids-${localWorkspaceFolderBasename}-25.10-cuda12.9-pip"
1515
],
1616
"hostRequirements": {"gpu": "optional"},
1717
"features": {
18-
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.8": {}
18+
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils:25.10": {}
1919
},
2020
"overrideFeatureInstallOrder": [
2121
"ghcr.io/rapidsai/devcontainers/features/rapids-build-utils"

.github/workflows/build.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
cpp-build:
4949
needs: [telemetry-setup]
5050
secrets: inherit
51-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.08
51+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.10
5252
with:
5353
build_type: ${{ inputs.build_type || 'branch' }}
5454
branch: ${{ inputs.branch }}
@@ -58,7 +58,7 @@ jobs:
5858
python-build:
5959
needs: [telemetry-setup, cpp-build]
6060
secrets: inherit
61-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
61+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
6262
with:
6363
build_type: ${{ inputs.build_type || 'branch' }}
6464
branch: ${{ inputs.branch }}
@@ -68,7 +68,7 @@ jobs:
6868
upload-conda:
6969
needs: [cpp-build, python-build]
7070
secrets: inherit
71-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.08
71+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.10
7272
with:
7373
build_type: ${{ inputs.build_type || 'branch' }}
7474
branch: ${{ inputs.branch }}
@@ -78,20 +78,20 @@ jobs:
7878
if: github.ref_type == 'branch'
7979
needs: [python-build]
8080
secrets: inherit
81-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
81+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
8282
with:
8383
build_type: ${{ inputs.build_type || 'branch' }}
8484
branch: ${{ inputs.branch }}
8585
sha: ${{ inputs.sha }}
8686
date: ${{ inputs.date }}
8787
node_type: "gpu-l4-latest-1"
8888
arch: "amd64"
89-
container_image: "rapidsai/ci-conda:25.08-latest"
89+
container_image: "rapidsai/ci-conda:25.10-latest"
9090
script: ci/build_docs.sh
9191
wheel-build-cpp:
9292
needs: [telemetry-setup]
9393
secrets: inherit
94-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
94+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
9595
with:
9696
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
9797
build_type: ${{ inputs.build_type || 'branch' }}
@@ -104,7 +104,7 @@ jobs:
104104
wheel-build-python:
105105
needs: [telemetry-setup, wheel-build-cpp]
106106
secrets: inherit
107-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
107+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
108108
with:
109109
build_type: ${{ inputs.build_type || 'branch' }}
110110
branch: ${{ inputs.branch }}
@@ -116,7 +116,7 @@ jobs:
116116
wheel-publish-cpp:
117117
needs: wheel-build-cpp
118118
secrets: inherit
119-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.08
119+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
120120
with:
121121
build_type: ${{ inputs.build_type || 'branch' }}
122122
branch: ${{ inputs.branch }}
@@ -127,7 +127,7 @@ jobs:
127127
wheel-publish-python:
128128
needs: wheel-build-python
129129
secrets: inherit
130-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.08
130+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.10
131131
with:
132132
build_type: ${{ inputs.build_type || 'branch' }}
133133
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- devcontainer
2424
- telemetry-setup
2525
secrets: inherit
26-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.08
26+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.10
2727
if: always()
2828
with:
2929
needs: ${{ toJSON(needs) }}
@@ -51,7 +51,7 @@ jobs:
5151
needs:
5252
- telemetry-setup
5353
secrets: inherit
54-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.08
54+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.10
5555
with:
5656
files_yaml: |
5757
test_cpp:
@@ -75,54 +75,54 @@ jobs:
7575
secrets: inherit
7676
needs:
7777
- telemetry-setup
78-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.08
78+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.10
7979
with:
8080
enable_check_generated_files: false
8181
ignored_pr_jobs: "telemetry-summarize"
8282
conda-cpp-build:
8383
needs: checks
8484
secrets: inherit
85-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.08
85+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.10
8686
with:
8787
build_type: pull-request
8888
script: ci/build_cpp.sh
8989
conda-cpp-tests:
9090
needs: [conda-cpp-build, changed-files]
9191
secrets: inherit
92-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.08
92+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.10
9393
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
9494
with:
9595
build_type: pull-request
9696
script: ci/test_cpp.sh
9797
conda-python-build:
9898
needs: conda-cpp-build
9999
secrets: inherit
100-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
100+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.10
101101
with:
102102
build_type: pull-request
103103
script: ci/build_python.sh
104104
conda-python-tests:
105105
needs: [conda-python-build, changed-files]
106106
secrets: inherit
107-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
107+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
108108
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
109109
with:
110110
build_type: pull-request
111111
script: ci/test_python.sh
112112
docs-build:
113113
needs: conda-python-build
114114
secrets: inherit
115-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
115+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.10
116116
with:
117117
build_type: pull-request
118118
node_type: "gpu-l4-latest-1"
119119
arch: "amd64"
120-
container_image: "rapidsai/ci-conda:25.08-latest"
120+
container_image: "rapidsai/ci-conda:25.10-latest"
121121
script: "ci/build_docs.sh"
122122
wheel-build-cpp:
123123
needs: checks
124124
secrets: inherit
125-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
125+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
126126
with:
127127
matrix_filter: group_by([.ARCH, (.CUDA_VER|split(".")|map(tonumber)|.[0])]) | map(max_by(.PY_VER|split(".")|map(tonumber)))
128128
build_type: pull-request
@@ -132,7 +132,7 @@ jobs:
132132
wheel-build-python:
133133
needs: wheel-build-cpp
134134
secrets: inherit
135-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
135+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.10
136136
with:
137137
build_type: pull-request
138138
script: ci/build_wheel_python.sh
@@ -141,7 +141,7 @@ jobs:
141141
wheel-tests:
142142
needs: [wheel-build-python, changed-files]
143143
secrets: inherit
144-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
144+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
145145
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
146146
with:
147147
build_type: pull-request
@@ -150,7 +150,7 @@ jobs:
150150
secrets: inherit
151151
needs:
152152
- telemetry-setup
153-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.08
153+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@branch-25.10
154154
with:
155155
arch: '["amd64"]'
156156
cuda: '["12.9"]'

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
cpp-tests:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.08
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.10
2929
with:
3030
build_type: ${{ inputs.build_type }}
3131
branch: ${{ inputs.branch }}
@@ -34,7 +34,7 @@ jobs:
3434
sha: ${{ inputs.sha }}
3535
python-tests:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.10
3838
with:
3939
build_type: ${{ inputs.build_type }}
4040
branch: ${{ inputs.branch }}
@@ -43,7 +43,7 @@ jobs:
4343
sha: ${{ inputs.sha }}
4444
wheel-tests:
4545
secrets: inherit
46-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
46+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.10
4747
with:
4848
build_type: ${{ inputs.build_type }}
4949
branch: ${{ inputs.branch }}

.github/workflows/trigger-breaking-change-alert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
trigger-notifier:
1313
if: contains(github.event.pull_request.labels.*.name, 'breaking')
1414
secrets: inherit
15-
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.08
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.10
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.08.00
1+
25.10.00

cpp/examples/versions.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# the License.
1313
# =============================================================================
1414

15-
set(RMM_TAG branch-25.08)
15+
set(RMM_TAG branch-25.10)

dependencies.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ dependencies:
165165
common:
166166
- output_types: conda
167167
packages:
168-
- &librmm_unsuffixed librmm==25.8.*,>=0.0.0a0
168+
- &librmm_unsuffixed librmm==25.10.*,>=0.0.0a0
169169
- output_types: requirements
170170
packages:
171171
# pip recognizes the index as a global option for the requirements.txt file
@@ -179,25 +179,25 @@ dependencies:
179179
cuda: "12.*"
180180
cuda_suffixed: "true"
181181
packages:
182-
- librmm-cu12==25.8.*,>=0.0.0a0
182+
- librmm-cu12==25.10.*,>=0.0.0a0
183183
- matrix:
184184
packages:
185185
- *librmm_unsuffixed
186186
depends_on_rmm:
187187
common:
188188
- output_types: conda
189189
packages:
190-
- rmm==25.8.*,>=0.0.0a0
190+
- rmm==25.10.*,>=0.0.0a0
191191
depends_on_librmm_tests:
192192
common:
193193
- output_types: conda
194194
packages:
195-
- librmm-tests==25.8.*,>=0.0.0a0
195+
- librmm-tests==25.10.*,>=0.0.0a0
196196
depends_on_librmm_example:
197197
common:
198198
- output_types: conda
199199
packages:
200-
- librmm-example==25.8.*,>=0.0.0a0
200+
- librmm-example==25.10.*,>=0.0.0a0
201201
checks:
202202
common:
203203
- output_types: [conda, requirements]

python/rmm/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ license = { text = "Apache-2.0" }
3131
requires-python = ">=3.10"
3232
dependencies = [
3333
"cuda-python>=12.6.2,<13.0a0",
34-
"librmm==25.8.*,>=0.0.0a0",
34+
"librmm==25.10.*,>=0.0.0a0",
3535
"numpy>=1.23,<3.0a0",
3636
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
3737
classifiers = [
@@ -79,7 +79,7 @@ requires = [
7979
"cmake>=3.30.4",
8080
"cuda-python>=12.6.2,<13.0a0",
8181
"cython>=3.0.0",
82-
"librmm==25.8.*,>=0.0.0a0",
82+
"librmm==25.10.*,>=0.0.0a0",
8383
"ninja",
8484
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
8585

0 commit comments

Comments
 (0)