Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
docs-build:
if: github.ref_type == 'branch'
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.2.0
with:
arch: "amd64"
branch: ${{ inputs.branch }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- checks
- docs-build
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@cuda-13.2.0
if: always()
with:
needs: ${{ toJSON(needs) }}
Expand All @@ -31,14 +31,14 @@ jobs:
checks:
secrets: inherit
needs: telemetry-setup
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@cuda-13.2.0
with:
enable_check_generated_files: false
ignored_pr_jobs: "telemetry-summarize"
docs-build:
needs: checks
secrets: inherit
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@cuda-13.2.0
with:
build_type: pull-request
node_type: "gpu-l4-latest-1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ channels:
- pyg
dependencies:
- breathe>=4.35
- cuda-version=13.1
- cuda-version=13.2
- cugraph-pyg==26.6.*,>=0.0.0a0
- cugraph==26.6.*,>=0.0.0a0
- doxygen
Expand All @@ -25,4 +25,4 @@ dependencies:
- sphinx-copybutton
- sphinx-markdown-tables
- sphinxcontrib-websupport
name: all_cuda-131_arch-x86_64
name: all_cuda-132_arch-x86_64
6 changes: 5 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ files:
output: [conda]
matrix:
# docs are only built on the latest CUDA version RAPIDS supports
cuda: ["13.1"]
cuda: ["13.2"]
arch: [x86_64]
includes:
- checks
Expand Down Expand Up @@ -61,6 +61,10 @@ dependencies:
cuda: "13.1"
packages:
- cuda-version=13.1
- matrix:
cuda: "13.2"
packages:
- cuda-version=13.2

docs:
common:
Expand Down
2 changes: 1 addition & 1 deletion docs/cugraph-docs/source/installation/getting_cugraph.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Install and update cuGraph using the conda command:

```bash
# CUDA 13
conda install -c rapidsai -c conda-forge cugraph cuda-version=13.1
conda install -c rapidsai -c conda-forge cugraph cuda-version=13.2

# CUDA 12
conda install -c rapidsai -c conda-forge cugraph cuda-version=12.9
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Install and update WholeGraph using the conda command:

```bash
# CUDA 13
conda install -c rapidsai -c conda-forge wholegraph cuda-version=13.1
conda install -c rapidsai -c conda-forge wholegraph cuda-version=13.2

# CUDA 12
conda install -c rapidsai -c conda-forge wholegraph cuda-version=12.9
Expand Down