We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e89376c commit e35f0d4Copy full SHA for e35f0d4
python/pyspark/mllib/__init__.py
@@ -25,7 +25,7 @@
25
import numpy
26
27
ver = [int(x) for x in numpy.version.version.split(.)[:2]]
28
-if ver < [1, 4]:
+if ver <= [1, 4]:
29
raise Exception("MLlib requires NumPy 1.4+")
30
31
__all__ = ['classification', 'clustering', 'feature', 'fpm', 'linalg', 'random',
0 commit comments