Skip to content

Commit 6f1e5c3

Browse files
authored
Fix test errors with SMAC caused by dask 2021.07 (#1183)
* Fix test errors with SMAC caused by dask 2021.07 The latest version of dask (2021.07) does not play nicely with `lazy_import` in SMAC. Fixing the version to be `dask>=2021.06,<2021.07` fixes this. * Removed lower bound for dask, reset distributed's lower bound * Typo
1 parent ec7ba12 commit 6f1e5c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ scipy>=0.14.1,<1.7.0
66
joblib
77
scikit-learn>=0.24.0,<0.25.0
88

9-
dask
10-
distributed>=2.2.0
9+
dask<2021.07
10+
distributed>=2.2.0,<2021.07
1111
pyyaml
1212
pandas>=1.0
1313
liac-arff

0 commit comments

Comments
 (0)