diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-12-05 18:10:23 +0000 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-12-05 18:10:23 +0000 |
| commit | bccdaf98238e77e31851e73b070851a2ff37808a (patch) | |
| tree | 4b2b1b6068fa1ccd88f58beebed9841283e5ef2b /setup.py | |
| parent | Reset defined info dicts (diff) | |
| download | pygensvm-bccdaf98238e77e31851e73b070851a2ff37808a.tar.gz pygensvm-bccdaf98238e77e31851e73b070851a2ff37808a.zip | |
fix typos
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |
