From 274f392b1304a58f9152a8020cbbb36bd777760d Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Tue, 3 Dec 2019 11:29:22 -0800 Subject: [PATCH] Remove dependencies to build UCX from CI --- ci/gpu/build.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 7d84394d8..f806de352 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -57,10 +57,8 @@ conda install "cudatoolkit=$CUDA_REL" \ "cudf=${MINOR_VERSION}" "dask-cudf=${MINOR_VERSION}" \ "dask>=2.8.1" "distributed>=2.8.1" -# needed for asynccontextmanager in py36 -conda install -c conda-forge "async_generator" "automake" "libtool" \ - "cmake" "automake" "autoconf" "cython" \ - "pytest" "pkg-config" "pytest-asyncio" +# needed for async tests +conda install -c conda-forge "pytest" "pytest-asyncio" # Use nightly build of ucx-py for now conda install -c rapidsai-nightly "ucx-py" @@ -79,7 +77,6 @@ $CC --version $CXX --version conda list - ################################################################################ # BUILD - Build dask-cuda ################################################################################ @@ -88,7 +85,6 @@ logger "Build dask-cuda..." cd $WORKSPACE python -m pip install -e . - ################################################################################ # TEST - Run py.tests for ucx-py ################################################################################