Skip to content

Commit d26da3c

Browse files
committed
iter
1 parent b7d9f3b commit d26da3c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
PYTHON_VERSION: '3.7'
4545
INSTALL_MKL: 'true'
4646
PANDAS_VERSION: '*'
47+
DASK_VERSION: '*'
4748
KERAS_VERSION: '*'
4849
COVERAGE: 'true'
4950
JOBLIB_VERSION: '*'
@@ -52,6 +53,7 @@ jobs:
5253
DISTRIB: 'conda'
5354
PYTHON_VERSION: '3.8'
5455
PANDAS_VERSION: '*'
56+
DASK_VERSION: '*'
5557
JOBLIB_VERSION: '*'
5658
INSTALL_MKL: 'true'
5759
TENSORFLOW_VERSION: '*'

build_tools/azure/install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ elif [[ "$DISTRIB" == "conda-pip-latest" ]]; then
9494
make_conda "python=$PYTHON_VERSION"
9595
python -m pip install -U pip
9696
python -m pip install numpy scipy joblib cython
97+
python -m pip install pandas==$PANDAS_VERSION
98+
python -m pip install dask==$DASK_VERSION
9799
python -m pip install scikit-learn
98100
python -m pip install pytest==$PYTEST_VERSION pytest-cov pytest-xdist
99-
python -m pip install pandas
100101
fi
101102

102103
if [[ "$COVERAGE" == "true" ]]; then

0 commit comments

Comments
 (0)