Skip to content

Commit ea30287

Browse files
committed
add dask to the install
1 parent 95247e6 commit ea30287

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

azure-pipelines.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
PYTHON_VERSION: '3.8'
3636
COVERAGE: 'true'
3737
PANDAS_VERSION: '*'
38+
DASK_VERSION: '*'
3839
TEST_DOCSTRINGS: 'true'
3940
JOBLIB_VERSION: '*'
4041
CHECK_WARNINGS: 'true'

build_tools/azure/install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ if [[ "$DISTRIB" == "conda" ]]; then
4040
TO_INSTALL="$TO_INSTALL pandas=$PANDAS_VERSION"
4141
fi
4242

43+
if [[ -n "$DASK_VERSION" ]]; then
44+
TO_INSTALL="$TO_INSTALL dask=$DASK_VERSION"
45+
fi
46+
4347
if [[ -n "$KERAS_VERSION" ]]; then
4448
TO_INSTALL="$TO_INSTALL keras=$KERAS_VERSION tensorflow=1"
4549
KERAS_BACKEND=tensorflow

0 commit comments

Comments
 (0)