Skip to content

Commit d0de97e

Browse files
committed
don't use joblib from externals
1 parent 3b6a933 commit d0de97e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

environment.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ dependencies:
99
- graphviz
1010
- python-graphviz
1111
- imageio
12+
- joblib

mglearn/plot_nmf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import matplotlib.pyplot as plt
33
import numpy as np
44

5-
from sklearn.externals.joblib import Memory
5+
from joblib import Memory
66

77
memory = Memory(cachedir="cache")
88

mglearn/plot_pca.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import matplotlib.pyplot as plt
33
import numpy as np
44

5-
from sklearn.externals.joblib import Memory
5+
from joblib import Memory
66

77
memory = Memory(cachedir="cache")
88

0 commit comments

Comments
 (0)