Requiring a version of scikit-learn strictly lower tan 0.24 prevents the installation of fklearn in python 3.9. More context in this Slack thread.
Description of the changes proposed in the pull request
Versions of scikit-learn that can be installed in python 3.9 (and don't include any major change) are supported. The only breaking change is in IsolationForest, but a version check is added for backwards compatibility.
Where should the reviewer start?
Check the bump in the range of the scikit-learn supported versions and, if interested, check about the behaviour param in the IsolationForest's doc.
Status
READY
Todo list
(Nothing had to change in here)
Background context
Requiring a version of
scikit-learn
strictly lower tan0.24
prevents the installation offklearn
in python 3.9. More context in this Slack thread.Description of the changes proposed in the pull request
Versions of
scikit-learn
that can be installed in python 3.9 (and don't include any major change) are supported. The only breaking change is inIsolationForest
, but a version check is added for backwards compatibility.Where should the reviewer start?
Check the bump in the range of the
scikit-learn
supported versions and, if interested, check about thebehaviour
param in the IsolationForest's doc.