Github user davies commented on a diff in the pull request:
https://github.com/apache/spark/pull/1725#discussion_r15726945
--- Diff: python/pyspark/tests.py ---
@@ -38,12 +38,19 @@
from pyspark.shuffle import Aggregator, InMemoryMerger, ExternalMerger
_have_scipy = False
+_have_numpy = False
try:
import scipy.sparse
_have_scipy = True
except:
# No SciPy, but that's okay, we'll skip those tests
pass
+try:
+ from numpy import array
--- End diff --
just try to import numpy, this `array` will overwrite array.array, make
other unit tests fail.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---