diff --git a/CHANGELOG.md b/CHANGELOG.md index 9afcd341770..f2f2c8916ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ - PR #236 Fixed issue with v0.7 nightly yml environment file. Also updated the README to remove pip - PR #239 Added a check to prevent a cugraph object to store two different graphs. - PR #244 Fixed issue with nvgraph's subgraph extraction if the first vertex in the vertex list is not incident on an edge in the extracted graph +- PR #249 Fix oudated cuDF version in gpu/build.sh # cuGraph 0.6.0 (22 Mar 2019) diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 1bdfd35177f..aec6c3bfa29 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -13,8 +13,9 @@ function logger() { # Set path, build parallel level, and CUDA version export PATH=/conda/bin:/usr/local/cuda/bin:$PATH export PARALLEL_LEVEL=4 -export CUDA_VERSION_SHORT=${CUDA_VERSION%.*} -export CUDF_VERSION=0.6 +export CUDA_REL=${CUDA_VERSION%.*} +export CUDF_VERSION=0.7.* +export RMM_VERSION=0.7.* # Set home to the job's workspace export HOME=$WORKSPACE @@ -31,7 +32,8 @@ nvidia-smi logger "Activate conda env..." source activate gdf -conda install -c nvidia/label/cuda$CUDA_VERSION_SHORT -c rapidsai/label/cuda$CUDA_VERSION_SHORT -c rapidsai-nightly/label/cuda$CUDA_VERSION_SHORT -c numba -c conda-forge -c defaults cudf=$CUDF_VERSION nvgraph networkx python-louvain +conda install -c nvidia/label/cuda$CUDA_REL -c rapidsai/label/cuda$CUDA_REL -c rapidsai-nightly/label/cuda$CUDA_REL -c numba -c conda-forge \ + cudf=$CUDF_VERSION rmm=$RMM_VERSION nvgraph networkx python-louvain logger "Check versions..." python --version