summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/setup.py4
-rw-r--r--numpy/core/tests/test_multiarray.py2
2 files changed, 1 insertions, 5 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index f59b67c88..d1229ee8f 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -10,10 +10,6 @@ from os.path import join
from numpy.distutils import log
from distutils.dep_util import newer
from sysconfig import get_config_var
-
-from numpy._build_utils.apple_accelerate import (
- uses_accelerate_framework
- )
from numpy.compat import npy_load_module
from setup_common import * # noqa: F403
diff --git a/numpy/core/tests/test_multiarray.py b/numpy/core/tests/test_multiarray.py
index 40b435f2e..012dcbc6c 100644
--- a/numpy/core/tests/test_multiarray.py
+++ b/numpy/core/tests/test_multiarray.py
@@ -6219,7 +6219,7 @@ class TestDot:
s = aligned_array((100, 100), 15, np.float32)
np.dot(s, m) # this will always segfault if the bug is present
- testdata = itertools.product((15,32), (10000,), (200,89), ('C','F'))
+ testdata = itertools.product((15, 32), (10000,), (200, 89), ('C', 'F'))
for align, m, n, a_order in testdata:
# Calculation in double precision
A_d = np.random.rand(m, n)