Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

aaronreidsmith / scikit-learn   python

Repository URL to install this package:

Version: 0.22 

/ externals / joblib / __init__.py

# Import necessary to preserve backward compatibility of pickles
import sys
import warnings

from joblib import *


msg = ("sklearn.externals.joblib is deprecated in 0.21 and will be removed "
       "in 0.23. Please import this functionality directly from joblib, "
       "which can be installed with: pip install joblib. If this warning is "
       "raised when loading pickled models, you may need to re-serialize "
       "those models with scikit-learn 0.21+.")

if not hasattr(sys, "_is_pytest_session"):
    warnings.warn(msg, category=FutureWarning)