diff options
-rw-r--r-- | numpy/distutils/system_info.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 6e0ece065..e0f0697c5 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1158,6 +1158,8 @@ from distutils.util import get_platform class lapack_opt_info(system_info): + notfounderror = LapackNotFoundError + def calc_info(self): if sys.platform=='darwin' and not os.environ.get('ATLAS',None): @@ -1253,6 +1255,8 @@ class lapack_opt_info(system_info): class blas_opt_info(system_info): + notfounderror = BlasNotFoundError + def calc_info(self): if sys.platform=='darwin' and not os.environ.get('ATLAS',None): |