Skip to content

Commit e35f0d4

Browse files
committed
minor
1 parent e89376c commit e35f0d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/mllib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import numpy
2626

2727
ver = [int(x) for x in numpy.version.version.split(.)[:2]]
28-
if ver < [1, 4]:
28+
if ver <= [1, 4]:
2929
raise Exception("MLlib requires NumPy 1.4+")
3030

3131
__all__ = ['classification', 'clustering', 'feature', 'fpm', 'linalg', 'random',

0 commit comments

Comments
 (0)