aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-12-05 18:10:23 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-12-05 18:10:23 +0000
commitbccdaf98238e77e31851e73b070851a2ff37808a (patch)
tree4b2b1b6068fa1ccd88f58beebed9841283e5ef2b /setup.py
parentReset defined info dicts (diff)
downloadpygensvm-bccdaf98238e77e31851e73b070851a2ff37808a.tar.gz
pygensvm-bccdaf98238e77e31851e73b070851a2ff37808a.zip
fix typos
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 5014570..206a430 100644
--- a/setup.py
+++ b/setup.py
@@ -107,7 +107,7 @@ def _skl_get_blas_info():
from numpy.distutils.system_info import get_info
def atlas_not_found(blas_info_):
- def_macros = blas_info.get("define_macros", [])
+ def_macros = blas_info_.get("define_macros", [])
for x in def_macros:
if x[0] == "NO_ATLAS_INFO":
# if x[1] != 1 we should have lapack
@@ -174,7 +174,7 @@ def get_lapack_info():
from numpy.distutils.system_info import get_info
def atlas_not_found(lapack_info_):
- def_macros = lapack_info.get("define_macros", [])
+ def_macros = lapack_info_.get("define_macros", [])
for x in def_macros:
if x[0] == "NO_ATLAS_INFO":
return True