Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
isVoid committed Jun 21, 2021
1 parent 1209996 commit 34958d7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -196,13 +196,6 @@ fi

# Both regular and Project Flash proceed here

# set environment variable for numpy 1.16
# will be enabled for later versions by default
np_ver=$(python -c "import numpy; print('.'.join(numpy.__version__.split('.')[:-1]))")
if [ "$np_ver" == "1.16" ];then
export NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1
fi

################################################################################
# BUILD - Build libcudf examples
################################################################################
Expand All @@ -211,6 +204,13 @@ fi
gpuci_logger "Building libcudf examples"
$WORKSPACE/cpp/examples/build.sh

# set environment variable for numpy 1.16
# will be enabled for later versions by default
np_ver=$(python -c "import numpy; print('.'.join(numpy.__version__.split('.')[:-1]))")
if [ "$np_ver" == "1.16" ];then
export NUMPY_EXPERIMENTAL_ARRAY_FUNCTION=1
fi

################################################################################
# TEST - Run py.test, notebooks
################################################################################
Expand Down

0 comments on commit 34958d7

Please sign in to comment.