neuropsychology / NeuroKit.py

A Python Toolbox for Statistics and Neurophysiological Signal Processing (EEG, EDA, ECG, EMG...).
http://neurokit.rtfd.io
MIT License
365 stars 102 forks source link

Fix #101 by importing joblib package rather than sklearn.externals version #104

Open alistairewj opened 4 years ago

alistairewj commented 4 years ago

The sklearn.externals.joblib module was deprecated in favor of a dependency on joblib - see Miscellaneous section in 0.21 changelog: https://scikit-learn.org/stable/whats_new/v0.21.html#changelog )

This PR removes sklearn.externals.joblib and uses the external joblib module instead. Fixes issue #101.