Skip to content

Commit ec876da

Browse files
committed
DOC v25.08 Updates [skip ci]
1 parent fca083f commit ec876da

16 files changed

+78
-78
lines changed

.github/workflows/build-ucxx.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ concurrency:
4242
jobs:
4343
conda-python-build:
4444
secrets: inherit
45-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.06
45+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
4646
with:
4747
build_type: ${{ inputs.build_type || 'branch' }}
4848
branch: ${{ inputs.branch }}

.github/workflows/build.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
jobs:
2929
conda-python-build:
3030
secrets: inherit
31-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.06
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -38,7 +38,7 @@ jobs:
3838
if: github.ref_type == 'branch'
3939
needs: [conda-python-build]
4040
secrets: inherit
41-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.06
41+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
4242
with:
4343
arch: "amd64"
4444
branch: ${{ inputs.branch }}
@@ -51,15 +51,15 @@ jobs:
5151
upload-conda:
5252
needs: [conda-python-build]
5353
secrets: inherit
54-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.06
54+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.08
5555
with:
5656
build_type: ${{ inputs.build_type || 'branch' }}
5757
branch: ${{ inputs.branch }}
5858
date: ${{ inputs.date }}
5959
sha: ${{ inputs.sha }}
6060
wheel-build:
6161
secrets: inherit
62-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06
62+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
6363
with:
6464
build_type: ${{ inputs.build_type || 'branch' }}
6565
branch: ${{ inputs.branch }}
@@ -76,7 +76,7 @@ jobs:
7676
wheel-publish:
7777
needs: wheel-build
7878
secrets: inherit
79-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.06
79+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.08
8080
with:
8181
build_type: ${{ inputs.build_type || 'branch' }}
8282
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- wheel-tests
2121
- telemetry-setup
2222
secrets: inherit
23-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.06
23+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.08
2424
with:
2525
needs: ${{ toJSON(needs) }}
2626
telemetry-setup:
@@ -37,25 +37,25 @@ jobs:
3737
checks:
3838
secrets: inherit
3939
needs: telemetry-setup
40-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.06
40+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.08
4141
with:
4242
ignored_pr_jobs: telemetry-summarize
4343
conda-python-build:
4444
needs: checks
4545
secrets: inherit
46-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.06
46+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
4747
with:
4848
build_type: pull-request
4949
conda-python-tests:
5050
needs: conda-python-build
5151
secrets: inherit
52-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.06
52+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
5353
with:
5454
build_type: pull-request
5555
docs-build:
5656
needs: conda-python-build
5757
secrets: inherit
58-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.06
58+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.08
5959
with:
6060
build_type: pull-request
6161
node_type: "gpu-l4-latest-1"
@@ -64,7 +64,7 @@ jobs:
6464
run_script: "ci/build_docs.sh"
6565
wheel-build:
6666
secrets: inherit
67-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06
67+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
6868
with:
6969
build_type: pull-request
7070
# Package is pure Python and only ever requires one build.
@@ -78,7 +78,7 @@ jobs:
7878
wheel-tests:
7979
needs: wheel-build
8080
secrets: inherit
81-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.06
81+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
8282
with:
8383
build_type: pull-request
8484
script: "ci/test_wheel.sh"

.github/workflows/test-ucxx.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ on:
3333
jobs:
3434
conda-python-ucxx-tests:
3535
secrets: inherit
36-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.06
36+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
3737
with:
3838
build_type: ${{ inputs.build_type }}
3939
branch: ${{ inputs.branch }}

.github/workflows/test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ on:
1919
jobs:
2020
conda-python-tests:
2121
secrets: inherit
22-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.06
22+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
2323
with:
2424
build_type: ${{ inputs.build_type }}
2525
branch: ${{ inputs.branch }}
2626
date: ${{ inputs.date }}
2727
sha: ${{ inputs.sha }}
2828
wheel-tests:
2929
secrets: inherit
30-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.06
30+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
3131
with:
3232
build_type: ${{ inputs.build_type }}
3333
branch: ${{ inputs.branch }}

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

+1-1
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.06
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.08
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
25.06.00
1+
25.08.00

conda/environments/all_cuda-114_arch-aarch64.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ dependencies:
1010
- click >=8.1
1111
- cuda-version=11.4
1212
- cudatoolkit
13-
- cudf==25.6.*,>=0.0.0a0
14-
- dask-cudf==25.6.*,>=0.0.0a0
15-
- distributed-ucxx==0.44.*,>=0.0.0a0
16-
- kvikio==25.6.*,>=0.0.0a0
13+
- cudf==25.8.*,>=0.0.0a0
14+
- dask-cudf==25.8.*,>=0.0.0a0
15+
- distributed-ucxx==0.45.*,>=0.0.0a0
16+
- kvikio==25.8.*,>=0.0.0a0
1717
- numactl-devel-cos7-aarch64
1818
- numba>=0.59.1,<0.61.0a0
1919
- numpy>=1.23,<3.0a0
@@ -26,12 +26,12 @@ dependencies:
2626
- pytest-timeout
2727
- python>=3.10,<3.13
2828
- rapids-build-backend>=0.3.0,<0.4.0dev0
29-
- rapids-dask-dependency==25.6.*,>=0.0.0a0
29+
- rapids-dask-dependency==25.8.*,>=0.0.0a0
3030
- setuptools>=64.0.0
3131
- sphinx
3232
- sphinx-click>=2.7.1
3333
- sphinx-rtd-theme>=0.5.1
34-
- ucx-py==0.44.*,>=0.0.0a0
35-
- ucxx==0.44.*,>=0.0.0a0
34+
- ucx-py==0.45.*,>=0.0.0a0
35+
- ucxx==0.45.*,>=0.0.0a0
3636
- zict>=2.0.0
3737
name: all_cuda-114_arch-aarch64

conda/environments/all_cuda-114_arch-x86_64.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ dependencies:
1010
- click >=8.1
1111
- cuda-version=11.4
1212
- cudatoolkit
13-
- cudf==25.6.*,>=0.0.0a0
14-
- dask-cudf==25.6.*,>=0.0.0a0
15-
- distributed-ucxx==0.44.*,>=0.0.0a0
16-
- kvikio==25.6.*,>=0.0.0a0
13+
- cudf==25.8.*,>=0.0.0a0
14+
- dask-cudf==25.8.*,>=0.0.0a0
15+
- distributed-ucxx==0.45.*,>=0.0.0a0
16+
- kvikio==25.8.*,>=0.0.0a0
1717
- numactl-devel-cos7-x86_64
1818
- numba>=0.59.1,<0.61.0a0
1919
- numpy>=1.23,<3.0a0
@@ -26,12 +26,12 @@ dependencies:
2626
- pytest-timeout
2727
- python>=3.10,<3.13
2828
- rapids-build-backend>=0.3.0,<0.4.0dev0
29-
- rapids-dask-dependency==25.6.*,>=0.0.0a0
29+
- rapids-dask-dependency==25.8.*,>=0.0.0a0
3030
- setuptools>=64.0.0
3131
- sphinx
3232
- sphinx-click>=2.7.1
3333
- sphinx-rtd-theme>=0.5.1
34-
- ucx-py==0.44.*,>=0.0.0a0
35-
- ucxx==0.44.*,>=0.0.0a0
34+
- ucx-py==0.45.*,>=0.0.0a0
35+
- ucxx==0.45.*,>=0.0.0a0
3636
- zict>=2.0.0
3737
name: all_cuda-114_arch-x86_64

conda/environments/all_cuda-118_arch-aarch64.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ dependencies:
1010
- click >=8.1
1111
- cuda-version=11.8
1212
- cudatoolkit
13-
- cudf==25.6.*,>=0.0.0a0
14-
- dask-cudf==25.6.*,>=0.0.0a0
15-
- distributed-ucxx==0.44.*,>=0.0.0a0
16-
- kvikio==25.6.*,>=0.0.0a0
13+
- cudf==25.8.*,>=0.0.0a0
14+
- dask-cudf==25.8.*,>=0.0.0a0
15+
- distributed-ucxx==0.45.*,>=0.0.0a0
16+
- kvikio==25.8.*,>=0.0.0a0
1717
- numactl-devel-cos7-aarch64
1818
- numba>=0.59.1,<0.61.0a0
1919
- numpy>=1.23,<3.0a0
@@ -26,12 +26,12 @@ dependencies:
2626
- pytest-timeout
2727
- python>=3.10,<3.13
2828
- rapids-build-backend>=0.3.0,<0.4.0dev0
29-
- rapids-dask-dependency==25.6.*,>=0.0.0a0
29+
- rapids-dask-dependency==25.8.*,>=0.0.0a0
3030
- setuptools>=64.0.0
3131
- sphinx
3232
- sphinx-click>=2.7.1
3333
- sphinx-rtd-theme>=0.5.1
34-
- ucx-py==0.44.*,>=0.0.0a0
35-
- ucxx==0.44.*,>=0.0.0a0
34+
- ucx-py==0.45.*,>=0.0.0a0
35+
- ucxx==0.45.*,>=0.0.0a0
3636
- zict>=2.0.0
3737
name: all_cuda-118_arch-aarch64

conda/environments/all_cuda-118_arch-x86_64.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ dependencies:
1010
- click >=8.1
1111
- cuda-version=11.8
1212
- cudatoolkit
13-
- cudf==25.6.*,>=0.0.0a0
14-
- dask-cudf==25.6.*,>=0.0.0a0
15-
- distributed-ucxx==0.44.*,>=0.0.0a0
16-
- kvikio==25.6.*,>=0.0.0a0
13+
- cudf==25.8.*,>=0.0.0a0
14+
- dask-cudf==25.8.*,>=0.0.0a0
15+
- distributed-ucxx==0.45.*,>=0.0.0a0
16+
- kvikio==25.8.*,>=0.0.0a0
1717
- numactl-devel-cos7-x86_64
1818
- numba>=0.59.1,<0.61.0a0
1919
- numpy>=1.23,<3.0a0
@@ -26,12 +26,12 @@ dependencies:
2626
- pytest-timeout
2727
- python>=3.10,<3.13
2828
- rapids-build-backend>=0.3.0,<0.4.0dev0
29-
- rapids-dask-dependency==25.6.*,>=0.0.0a0
29+
- rapids-dask-dependency==25.8.*,>=0.0.0a0
3030
- setuptools>=64.0.0
3131
- sphinx
3232
- sphinx-click>=2.7.1
3333
- sphinx-rtd-theme>=0.5.1
34-
- ucx-py==0.44.*,>=0.0.0a0
35-
- ucxx==0.44.*,>=0.0.0a0
34+
- ucx-py==0.45.*,>=0.0.0a0
35+
- ucxx==0.45.*,>=0.0.0a0
3636
- zict>=2.0.0
3737
name: all_cuda-118_arch-x86_64

conda/environments/all_cuda-128_arch-aarch64.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ dependencies:
1111
- cuda-nvcc-impl
1212
- cuda-nvrtc
1313
- cuda-version=12.8
14-
- cudf==25.6.*,>=0.0.0a0
15-
- dask-cudf==25.6.*,>=0.0.0a0
16-
- distributed-ucxx==0.44.*,>=0.0.0a0
17-
- kvikio==25.6.*,>=0.0.0a0
14+
- cudf==25.8.*,>=0.0.0a0
15+
- dask-cudf==25.8.*,>=0.0.0a0
16+
- distributed-ucxx==0.45.*,>=0.0.0a0
17+
- kvikio==25.8.*,>=0.0.0a0
1818
- numactl-devel-cos7-aarch64
1919
- numba>=0.59.1,<0.61.0a0
2020
- numpy>=1.23,<3.0a0
@@ -27,12 +27,12 @@ dependencies:
2727
- pytest-timeout
2828
- python>=3.10,<3.13
2929
- rapids-build-backend>=0.3.0,<0.4.0dev0
30-
- rapids-dask-dependency==25.6.*,>=0.0.0a0
30+
- rapids-dask-dependency==25.8.*,>=0.0.0a0
3131
- setuptools>=64.0.0
3232
- sphinx
3333
- sphinx-click>=2.7.1
3434
- sphinx-rtd-theme>=0.5.1
35-
- ucx-py==0.44.*,>=0.0.0a0
36-
- ucxx==0.44.*,>=0.0.0a0
35+
- ucx-py==0.45.*,>=0.0.0a0
36+
- ucxx==0.45.*,>=0.0.0a0
3737
- zict>=2.0.0
3838
name: all_cuda-128_arch-aarch64

conda/environments/all_cuda-128_arch-x86_64.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ dependencies:
1111
- cuda-nvcc-impl
1212
- cuda-nvrtc
1313
- cuda-version=12.8
14-
- cudf==25.6.*,>=0.0.0a0
15-
- dask-cudf==25.6.*,>=0.0.0a0
16-
- distributed-ucxx==0.44.*,>=0.0.0a0
17-
- kvikio==25.6.*,>=0.0.0a0
14+
- cudf==25.8.*,>=0.0.0a0
15+
- dask-cudf==25.8.*,>=0.0.0a0
16+
- distributed-ucxx==0.45.*,>=0.0.0a0
17+
- kvikio==25.8.*,>=0.0.0a0
1818
- numactl-devel-cos7-x86_64
1919
- numba>=0.59.1,<0.61.0a0
2020
- numpy>=1.23,<3.0a0
@@ -27,12 +27,12 @@ dependencies:
2727
- pytest-timeout
2828
- python>=3.10,<3.13
2929
- rapids-build-backend>=0.3.0,<0.4.0dev0
30-
- rapids-dask-dependency==25.6.*,>=0.0.0a0
30+
- rapids-dask-dependency==25.8.*,>=0.0.0a0
3131
- setuptools>=64.0.0
3232
- sphinx
3333
- sphinx-click>=2.7.1
3434
- sphinx-rtd-theme>=0.5.1
35-
- ucx-py==0.44.*,>=0.0.0a0
36-
- ucxx==0.44.*,>=0.0.0a0
35+
- ucx-py==0.45.*,>=0.0.0a0
36+
- ucxx==0.45.*,>=0.0.0a0
3737
- zict>=2.0.0
3838
name: all_cuda-128_arch-x86_64

dependencies.yaml

+16-16
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ dependencies:
156156
- numpy>=1.23,<3.0a0
157157
- pandas>=1.3
158158
- pynvml>=12.0.0,<13.0.0a0
159-
- rapids-dask-dependency==25.6.*,>=0.0.0a0
159+
- rapids-dask-dependency==25.8.*,>=0.0.0a0
160160
- zict>=2.0.0
161161
test_python:
162162
common:
@@ -167,12 +167,12 @@ dependencies:
167167
- pytest-timeout
168168
- output_types: [conda]
169169
packages:
170-
- &cudf_unsuffixed cudf==25.6.*,>=0.0.0a0
171-
- &dask_cudf_unsuffixed dask-cudf==25.6.*,>=0.0.0a0
172-
- distributed-ucxx==0.44.*,>=0.0.0a0
173-
- &kvikio_unsuffixed kvikio==25.6.*,>=0.0.0a0
174-
- &ucx_py_unsuffixed ucx-py==0.44.*,>=0.0.0a0
175-
- ucxx==0.44.*,>=0.0.0a0
170+
- &cudf_unsuffixed cudf==25.8.*,>=0.0.0a0
171+
- &dask_cudf_unsuffixed dask-cudf==25.8.*,>=0.0.0a0
172+
- distributed-ucxx==0.45.*,>=0.0.0a0
173+
- &kvikio_unsuffixed kvikio==25.8.*,>=0.0.0a0
174+
- &ucx_py_unsuffixed ucx-py==0.45.*,>=0.0.0a0
175+
- ucxx==0.45.*,>=0.0.0a0
176176
specific:
177177
- output_types: conda
178178
matrices:
@@ -190,18 +190,18 @@ dependencies:
190190
cuda: "12.*"
191191
cuda_suffixed: "true"
192192
packages:
193-
- cudf-cu12==25.6.*,>=0.0.0a0
194-
- dask-cudf-cu12==25.6.*,>=0.0.0a0
195-
- kvikio-cu12==25.6.*,>=0.0.0a0
196-
- ucx-py-cu12==0.44.*,>=0.0.0a0
193+
- cudf-cu12==25.8.*,>=0.0.0a0
194+
- dask-cudf-cu12==25.8.*,>=0.0.0a0
195+
- kvikio-cu12==25.8.*,>=0.0.0a0
196+
- ucx-py-cu12==0.45.*,>=0.0.0a0
197197
- matrix:
198198
cuda: "11.*"
199199
cuda_suffixed: "true"
200200
packages:
201-
- cudf-cu11==25.6.*,>=0.0.0a0
202-
- dask-cudf-cu11==25.6.*,>=0.0.0a0
203-
- kvikio-cu11==25.6.*,>=0.0.0a0
204-
- ucx-py-cu11==0.44.*,>=0.0.0a0
201+
- cudf-cu11==25.8.*,>=0.0.0a0
202+
- dask-cudf-cu11==25.8.*,>=0.0.0a0
203+
- kvikio-cu11==25.8.*,>=0.0.0a0
204+
- ucx-py-cu11==0.45.*,>=0.0.0a0
205205
- matrix:
206206
packages:
207207
- *cudf_unsuffixed
@@ -212,4 +212,4 @@ dependencies:
212212
common:
213213
- output_types: conda
214214
packages:
215-
- dask-cuda==25.6.*,>=0.0.0a0
215+
- dask-cuda==25.8.*,>=0.0.0a0

0 commit comments

Comments
 (0)