Skip to content

Commit

Permalink
fix the scipy version; 0.14 introduced the new api not 0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Lawson committed Sep 27, 2018
1 parent 441e2e2 commit 03b5578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sklearn/utils/_scipy_truncnorm_backport.py
Expand Up @@ -5,7 +5,7 @@
import numbers

from .fixes import sp_version
if sp_version < (0, 16):
if sp_version < (0, 14):
from scipy.stats.distributions import rv_frozen, rv_continuous
from scipy.stats.distributions import (_norm_cdf, _norm_sf, _norm_pdf,
_norm_logpdf, _norm_isf, _norm_ppf)
Expand Down

0 comments on commit 03b5578

Please sign in to comment.