From 4ca9eff15615a290cc3374dfbadf4e39cdce4f59 Mon Sep 17 00:00:00 2001 From: Gregory Lee Date: Fri, 3 Nov 2023 14:10:35 -0700 Subject: [PATCH] Update ci/build_wheel.sh Co-authored-by: jakirkham --- ci/build_wheel.sh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/ci/build_wheel.sh b/ci/build_wheel.sh index 7aec5a4ba..8afa74ae9 100755 --- a/ci/build_wheel.sh +++ b/ci/build_wheel.sh @@ -48,17 +48,6 @@ rapids-dependency-file-generator \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee build_requirements.txt pip install -r build_requirements.txt -# Building the libjpeg-turbo dependency requires YASM -# Also need to install openslide dev libraries on the system -if ! command -v apt &> /dev/null -then - echo "apt package manager not found, attempting to use yum" - yum install yasm openslide-devel -y -else - echo "apt package manager was found" - apt update - apt install yasm libopenslide-dev -y -fi # First build the C++ lib using CMake via the run script echo "libcucim version: `cat VERSION_CPP`"