Skip to content

Commit d56dd66

Browse files
committed
DOC v25.02 Updates [skip ci]
1 parent 16e614c commit d56dd66

13 files changed

+89
-89
lines changed

.github/workflows/build.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
jobs:
2929
cpp-build:
3030
secrets: inherit
31-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.12
31+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.02
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -37,7 +37,7 @@ jobs:
3737
python-build:
3838
needs: [cpp-build]
3939
secrets: inherit
40-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.12
40+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
4141
with:
4242
build_type: ${{ inputs.build_type || 'branch' }}
4343
branch: ${{ inputs.branch }}
@@ -46,15 +46,15 @@ jobs:
4646
upload-conda:
4747
needs: [cpp-build, python-build]
4848
secrets: inherit
49-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-24.12
49+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.02
5050
with:
5151
build_type: ${{ inputs.build_type || 'branch' }}
5252
branch: ${{ inputs.branch }}
5353
date: ${{ inputs.date }}
5454
sha: ${{ inputs.sha }}
5555
wheel-build-cugraph-dgl:
5656
secrets: inherit
57-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
57+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
5858
with:
5959
build_type: ${{ inputs.build_type || 'branch' }}
6060
branch: ${{ inputs.branch }}
@@ -64,7 +64,7 @@ jobs:
6464
wheel-publish-cugraph-dgl:
6565
needs: wheel-build-cugraph-dgl
6666
secrets: inherit
67-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.12
67+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
6868
with:
6969
build_type: ${{ inputs.build_type || 'branch' }}
7070
branch: ${{ inputs.branch }}
@@ -73,7 +73,7 @@ jobs:
7373
package-name: cugraph-dgl
7474
wheel-build-cugraph-pyg:
7575
secrets: inherit
76-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
76+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
7777
with:
7878
build_type: ${{ inputs.build_type || 'branch' }}
7979
branch: ${{ inputs.branch }}
@@ -83,7 +83,7 @@ jobs:
8383
wheel-publish-cugraph-pyg:
8484
needs: wheel-build-cugraph-pyg
8585
secrets: inherit
86-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.12
86+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
8787
with:
8888
build_type: ${{ inputs.build_type || 'branch' }}
8989
branch: ${{ inputs.branch }}
@@ -92,7 +92,7 @@ jobs:
9292
package-name: cugraph-pyg
9393
wheel-build-pylibwholegraph:
9494
secrets: inherit
95-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
95+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
9696
with:
9797
build_type: ${{ inputs.build_type || 'branch' }}
9898
branch: ${{ inputs.branch }}
@@ -102,7 +102,7 @@ jobs:
102102
wheel-publish-pylibwholegraph:
103103
needs: wheel-build-pylibwholegraph
104104
secrets: inherit
105-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-24.12
105+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.02
106106
with:
107107
build_type: ${{ inputs.build_type || 'branch' }}
108108
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+14-14
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
- wheel-build-cugraph-pyg
2727
- wheel-tests-cugraph-pyg
2828
secrets: inherit
29-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-24.12
29+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.02
3030
if: always()
3131
with:
3232
needs: ${{ toJSON(needs) }}
3333
changed-files:
3434
secrets: inherit
35-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-24.12
35+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@branch-25.02
3636
with:
3737
files_yaml: |
3838
test_cpp:
@@ -64,32 +64,32 @@ jobs:
6464
- '!readme_pages/**'
6565
checks:
6666
secrets: inherit
67-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-24.12
67+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.02
6868
with:
6969
enable_check_generated_files: false
7070
conda-cpp-build:
7171
needs: checks
7272
secrets: inherit
73-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-24.12
73+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@branch-25.02
7474
with:
7575
build_type: pull-request
7676
conda-cpp-tests:
7777
needs: [conda-cpp-build, changed-files]
7878
secrets: inherit
79-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.12
79+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.02
8080
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
8181
with:
8282
build_type: pull-request
8383
conda-python-build:
8484
needs: conda-cpp-build
8585
secrets: inherit
86-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-24.12
86+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.02
8787
with:
8888
build_type: pull-request
8989
conda-notebook-tests:
9090
needs: [conda-python-build, changed-files]
9191
secrets: inherit
92-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.12
92+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02
9393
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks
9494
with:
9595
build_type: pull-request
@@ -100,21 +100,21 @@ jobs:
100100
conda-python-tests:
101101
needs: [conda-python-build, changed-files]
102102
secrets: inherit
103-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.12
103+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
104104
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
105105
with:
106106
build_type: pull-request
107107
wheel-build-pylibwholegraph:
108108
needs: checks
109109
secrets: inherit
110-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
110+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
111111
with:
112112
build_type: pull-request
113113
script: ci/build_wheel_pylibwholegraph.sh
114114
wheel-tests-pylibwholegraph:
115115
needs: [wheel-build-pylibwholegraph, changed-files]
116116
secrets: inherit
117-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
117+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
118118
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
119119
with:
120120
build_type: pull-request
@@ -123,14 +123,14 @@ jobs:
123123
wheel-build-cugraph-dgl:
124124
needs: checks
125125
secrets: inherit
126-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
126+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
127127
with:
128128
build_type: pull-request
129129
script: ci/build_wheel_cugraph-dgl.sh
130130
wheel-tests-cugraph-dgl:
131131
needs: [wheel-build-pylibwholegraph, wheel-build-cugraph-dgl, changed-files]
132132
secrets: inherit
133-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
133+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
134134
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
135135
with:
136136
build_type: pull-request
@@ -139,14 +139,14 @@ jobs:
139139
wheel-build-cugraph-pyg:
140140
needs: checks
141141
secrets: inherit
142-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-24.12
142+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.02
143143
with:
144144
build_type: pull-request
145145
script: ci/build_wheel_cugraph-pyg.sh
146146
wheel-tests-cugraph-pyg:
147147
needs: [wheel-build-pylibwholegraph, wheel-build-cugraph-pyg, changed-files]
148148
secrets: inherit
149-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
149+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
150150
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
151151
with:
152152
build_type: pull-request

.github/workflows/test.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ on:
1616
jobs:
1717
conda-cpp-tests:
1818
secrets: inherit
19-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-24.12
19+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@branch-25.02
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}
2323
date: ${{ inputs.date }}
2424
sha: ${{ inputs.sha }}
2525
conda-notebook-tests:
2626
secrets: inherit
27-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.12
27+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-25.02
2828
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_notebooks
2929
with:
3030
build_type: pull-request
@@ -34,15 +34,15 @@ jobs:
3434
run_script: "ci/test_notebooks.sh"
3535
conda-python-tests:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.12
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.02
3838
with:
3939
build_type: nightly
4040
branch: ${{ inputs.branch }}
4141
date: ${{ inputs.date }}
4242
sha: ${{ inputs.sha }}
4343
wheel-tests-pylibwholegraph:
4444
secrets: inherit
45-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
45+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
4646
with:
4747
build_type: nightly
4848
branch: ${{ inputs.branch }}
@@ -52,7 +52,7 @@ jobs:
5252
matrix_filter: map(select(.ARCH == "amd64"))
5353
wheel-tests-cugraph-dgl:
5454
secrets: inherit
55-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
55+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
5656
with:
5757
build_type: nightly
5858
branch: ${{ inputs.branch }}
@@ -62,7 +62,7 @@ jobs:
6262
matrix_filter: map(select(.ARCH == "amd64"))
6363
wheel-tests-cugraph-pyg:
6464
secrets: inherit
65-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-24.12
65+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.02
6666
with:
6767
build_type: nightly
6868
branch: ${{ inputs.branch }}

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.12.00
1+
25.02.00

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ dependencies:
1212
- cuda-nvtx
1313
- cuda-version=11.8
1414
- cudatoolkit
15-
- cudf==24.12.*,>=0.0.0a0
16-
- cugraph==24.12.*,>=0.0.0a0
15+
- cudf==25.2.*,>=0.0.0a0
16+
- cugraph==25.2.*,>=0.0.0a0
1717
- cupy>=12.0.0
1818
- cython>=3.0.0
19-
- dask-cudf==24.12.*,>=0.0.0a0
19+
- dask-cudf==25.2.*,>=0.0.0a0
2020
- dglteam/label/th23_cu118::dgl>=2.4.0.th23.cu*
2121
- doxygen
2222
- graphviz
@@ -34,8 +34,8 @@ dependencies:
3434
- pre-commit
3535
- pydantic
3636
- pydata-sphinx-theme
37-
- pylibcugraphops==24.12.*,>=0.0.0a0
38-
- pylibraft==24.12.*,>=0.0.0a0
37+
- pylibcugraphops==25.2.*,>=0.0.0a0
38+
- pylibraft==25.2.*,>=0.0.0a0
3939
- pytest
4040
- pytest-benchmark
4141
- pytest-cov
@@ -44,10 +44,10 @@ dependencies:
4444
- pytorch-cuda=11.8
4545
- pytorch::pytorch>=2.3,<2.4.0a0
4646
- pytorch_geometric>=2.5,<2.6
47-
- raft-dask==24.12.*,>=0.0.0a0
47+
- raft-dask==25.2.*,>=0.0.0a0
4848
- rapids-build-backend>=0.3.0,<0.4.0.dev0
4949
- recommonmark
50-
- rmm==24.12.*,>=0.0.0a0
50+
- rmm==25.2.*,>=0.0.0a0
5151
- scikit-build-core>=0.10.0
5252
- scipy
5353
- setuptools>=61.0.0

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ dependencies:
1313
- cuda-nvtx-dev
1414
- cuda-profiler-api
1515
- cuda-version=12.1
16-
- cudf==24.12.*,>=0.0.0a0
17-
- cugraph==24.12.*,>=0.0.0a0
16+
- cudf==25.2.*,>=0.0.0a0
17+
- cugraph==25.2.*,>=0.0.0a0
1818
- cupy>=12.0.0
1919
- cython>=3.0.0
20-
- dask-cudf==24.12.*,>=0.0.0a0
20+
- dask-cudf==25.2.*,>=0.0.0a0
2121
- dglteam/label/th23_cu121::dgl>=2.4.0.th23.cu*
2222
- doxygen
2323
- graphviz
@@ -39,8 +39,8 @@ dependencies:
3939
- pre-commit
4040
- pydantic
4141
- pydata-sphinx-theme
42-
- pylibcugraphops==24.12.*,>=0.0.0a0
43-
- pylibraft==24.12.*,>=0.0.0a0
42+
- pylibcugraphops==25.2.*,>=0.0.0a0
43+
- pylibraft==25.2.*,>=0.0.0a0
4444
- pytest
4545
- pytest-benchmark
4646
- pytest-cov
@@ -49,10 +49,10 @@ dependencies:
4949
- pytorch-cuda=12.1
5050
- pytorch::pytorch>=2.3,<2.4.0a0
5151
- pytorch_geometric>=2.5,<2.6
52-
- raft-dask==24.12.*,>=0.0.0a0
52+
- raft-dask==25.2.*,>=0.0.0a0
5353
- rapids-build-backend>=0.3.0,<0.4.0.dev0
5454
- recommonmark
55-
- rmm==24.12.*,>=0.0.0a0
55+
- rmm==25.2.*,>=0.0.0a0
5656
- scikit-build-core>=0.10.0
5757
- scipy
5858
- setuptools>=61.0.0

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ dependencies:
1313
- cuda-nvtx-dev
1414
- cuda-profiler-api
1515
- cuda-version=12.4
16-
- cudf==24.12.*,>=0.0.0a0
17-
- cugraph==24.12.*,>=0.0.0a0
16+
- cudf==25.2.*,>=0.0.0a0
17+
- cugraph==25.2.*,>=0.0.0a0
1818
- cupy>=12.0.0
1919
- cython>=3.0.0
20-
- dask-cudf==24.12.*,>=0.0.0a0
20+
- dask-cudf==25.2.*,>=0.0.0a0
2121
- dglteam/label/th23_cu121::dgl>=2.4.0.th23.cu*
2222
- doxygen
2323
- graphviz
@@ -39,8 +39,8 @@ dependencies:
3939
- pre-commit
4040
- pydantic
4141
- pydata-sphinx-theme
42-
- pylibcugraphops==24.12.*,>=0.0.0a0
43-
- pylibraft==24.12.*,>=0.0.0a0
42+
- pylibcugraphops==25.2.*,>=0.0.0a0
43+
- pylibraft==25.2.*,>=0.0.0a0
4444
- pytest
4545
- pytest-benchmark
4646
- pytest-cov
@@ -49,10 +49,10 @@ dependencies:
4949
- pytorch-cuda=12.1
5050
- pytorch::pytorch>=2.3,<2.4.0a0
5151
- pytorch_geometric>=2.5,<2.6
52-
- raft-dask==24.12.*,>=0.0.0a0
52+
- raft-dask==25.2.*,>=0.0.0a0
5353
- rapids-build-backend>=0.3.0,<0.4.0.dev0
5454
- recommonmark
55-
- rmm==24.12.*,>=0.0.0a0
55+
- rmm==25.2.*,>=0.0.0a0
5656
- scikit-build-core>=0.10.0
5757
- scipy
5858
- setuptools>=61.0.0

cpp/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "WholeGraph C API"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 24.12
41+
PROJECT_NUMBER = 25.02
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

0 commit comments

Comments
 (0)