Browse code

Merge pull request #285 from python-adaptive/pin-scikit-learn

temporarily pin scikit-learn<=0.23.1

Bas Nijholt authored on 07/08/2020 13:33:41 • GitHub committed on 07/08/2020 13:33:41
Showing 1 changed files
... ...
@@ -57,6 +57,7 @@ extras_require = {
57 57
         "ipyparallel>=6.2.5",  # because of https://github.com/ipython/ipyparallel/issues/404
58 58
         "loky",
59 59
         "scikit-optimize",
60
+        "scikit-learn<=0.23.1",  # because of https://github.com/scikit-optimize/scikit-optimize/issues/931, remove dep when fixed
60 61
         "wexpect" if os.name == "nt" else "pexpect",
61 62
     ],
62 63
 }