Skip to content
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

Unvendoring joblib #2019

Closed
wants to merge 1 commit into from

Conversation

GaelVaroquaux
Copy link

Follows scikit-learn/scikit-learn#11166 to deal with unvendoring joblib in scikit-learn

Follows scikit-learn/scikit-learn#11166 to deal
with unvendoring joblib in scikit-learn
try:
from sklearn.externals.joblib.parallel import ( # noqa
AutoBatchingMixin, ParallelBackendBase)
except ModuleNotFoundError:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Guess we could add the following for Python 2/3 support

try:
    ModuleNotFoundError
except NameError:
    ModuleNotFoundError = ImportError

@jakirkham
Copy link
Member

Should this be closed in light of PR ( #2298 )?

@mrocklin
Copy link
Member

mrocklin commented Nov 3, 2018 via email

@mrocklin mrocklin closed this Apr 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants