Skip to content

Commit

Permalink
revert accidental CUDA change
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Dec 31, 2024
1 parent ec09d25 commit bc89194
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions ci/build_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ for PROJECT in ${PROJ_LIST}; do
rapids-logger "Download ${PROJECT} xml_tar"
TMP_DIR=$(mktemp -d)
export XML_DIR_${PROJECT^^}="$TMP_DIR"

curl "https://d1664dvumjb44w.cloudfront.net/${PROJECT}/xml_tar/${RAPIDS_VERSION_MAJOR_MINOR}/xml.tar.gz" | tar -xzf - -C "${TMP_DIR}"
done

Expand All @@ -36,8 +37,8 @@ pushd docs/cugraph-docs
# type of failure well.
python -c "import cugraph; print(f'Using cugraph: {cugraph}')"
sphinx-build -b dirhtml source _html
mkdir -p "${RAPIDS_DOCS_DIR}/cugraph-docs/html"
mv _html/* "${RAPIDS_DOCS_DIR}/cugraph-docs/html"
mkdir -p "${RAPIDS_DOCS_DIR}/cugraph/html"
mv _html/* "${RAPIDS_DOCS_DIR}/cugraph/html"
popd

RAPIDS_VERSION_NUMBER="${RAPIDS_VERSION_MAJOR_MINOR}" rapids-upload-docs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ channels:
- nvidia
dependencies:
- breathe>=4.35
- cuda-version=12.2
- cuda-version=12.5
- cugraph-dgl==25.2.*
- cugraph-pyg==25.2.*
- cugraph==25.2.*
Expand All @@ -31,4 +31,4 @@ dependencies:
- sphinx-markdown-tables
- sphinx>=8
- sphinxcontrib-websupport
name: all_cuda-122_arch-x86_64
name: all_cuda-125_arch-x86_64
3 changes: 2 additions & 1 deletion dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ files:
all:
output: [conda]
matrix:
cuda: ["12.2"]
# docs are only built on the latest CUDA version RAPIDS supports
cuda: ["12.5"]
arch: [x86_64]
includes:
- checks
Expand Down

0 comments on commit bc89194

Please sign in to comment.