We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95247e6 commit ea30287Copy full SHA for ea30287
azure-pipelines.yml
@@ -35,6 +35,7 @@ jobs:
35
PYTHON_VERSION: '3.8'
36
COVERAGE: 'true'
37
PANDAS_VERSION: '*'
38
+ DASK_VERSION: '*'
39
TEST_DOCSTRINGS: 'true'
40
JOBLIB_VERSION: '*'
41
CHECK_WARNINGS: 'true'
build_tools/azure/install.sh
@@ -40,6 +40,10 @@ if [[ "$DISTRIB" == "conda" ]]; then
TO_INSTALL="$TO_INSTALL pandas=$PANDAS_VERSION"
fi
42
43
+ if [[ -n "$DASK_VERSION" ]]; then
44
+ TO_INSTALL="$TO_INSTALL dask=$DASK_VERSION"
45
+ fi
46
+
47
if [[ -n "$KERAS_VERSION" ]]; then
48
TO_INSTALL="$TO_INSTALL keras=$KERAS_VERSION tensorflow=1"
49
KERAS_BACKEND=tensorflow
0 commit comments