-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sklearn.externals.six is Deprecated in Sklearn 0.23 #41
Comments
Agreed this is a simple fix that should be implemented! I made a quick fix at this repo in the meantime. It's runnable with |
thanks for reporting, don't hesitate to open a PR fixing this |
@ngoix I believe I do not have write permissions to create a new branch for this. |
you need to clone this repo and create your branch on your clone - same as described in scikit-learn how to contribute |
Hi, |
I'd be happy to assist with a PiPy deployment if that would be helpful to the project? |
Hi, Before importing something you can do: A solution proposed in there for developer of sklearn seems to be Is somebody going to fix that at some point because it is really confusing to download a package and it initially does not work. Best regards, |
Since
sklearn.externals.six
is deprecated as of version 0.23 (https://github.com/scikit-learn/scikit-learn/pull/12916/files), a fresh install of skopes with the latest version of sklearn will yield the following error:when running
from skrules import SkopeRules
, on line12
ofskope_rules.py
.Would it make sense to rely on the official version of six as the documentation suggests? If this is something the community is interested in, I'd be happy to open a PR.
The usage of six seems to be extremely minimal in this project, so the PR seems straightforward, assuming that I am not overlooking any complexities?
The text was updated successfully, but these errors were encountered: