From fe50181ceb100fd4b999dc1717c568d72240382c Mon Sep 17 00:00:00 2001 From: Kyle Edwards Date: Wed, 22 May 2024 15:53:14 -0400 Subject: [PATCH] disable-cuda --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index a76203a6db..bde9417ca5 100755 --- a/build.sh +++ b/build.sh @@ -294,7 +294,7 @@ if (! hasArg --configure-only) && (completeBuild || hasArg cuml || hasArg pydocs fi SKBUILD_CMAKE_ARGS="-DCMAKE_MESSAGE_LOG_LEVEL=${CMAKE_LOG_LEVEL};${SKBUILD_EXTRA_CMAKE_ARGS}" \ - python -m pip install --no-build-isolation --no-deps ${REPODIR}/python + python -m pip install --no-build-isolation --no-deps --package-config disable-cuda=true ${REPODIR}/python if hasArg pydocs; then cd ${REPODIR}/docs @@ -304,5 +304,5 @@ fi if hasArg cuml-cpu; then SKBUILD_CMAKE_ARGS="-DCUML_CPU=ON;-DCMAKE_MESSAGE_LOG_LEVEL=VERBOSE" \ - python -m pip install --no-build-isolation --no-deps -v ${REPODIR}/python + python -m pip install --no-build-isolation --no-deps --package-config disable-cuda=true ${REPODIR}/python fi