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 b1bf5e7 commit 3793876Copy full SHA for 3793876
nibabel/nicom/dwiparams.py
@@ -21,7 +21,7 @@
21
'''
22
import numpy as np
23
import numpy.linalg as npl
24
-from ..testing import setup_test # flake8: noqa F401
+from ..testing import setup_test as setup_module # flake8: noqa F401
25
26
27
def B2q(B, tol=None):
nibabel/testing/__init__.py
@@ -218,4 +218,4 @@ def setup_test():
218
"""
219
from distutils.version import LooseVersion
220
if LooseVersion(np.__version__) >= LooseVersion('1.14'):
221
- np.set_printoptions(sign='legacy')
+ np.set_printoptions(legacy="1.13")
0 commit comments