diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2012-03-16 19:15:43 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2012-03-16 19:15:43 +0100 |
commit | 83480b6eb106d8c7e1d9293d7adc988c7c670778 (patch) | |
tree | d6754d3ee09b8abab7da0c6df7c679d4a97ffa8e | |
parent | 0258f19da8a21462d95abad68041056e6951c508 (diff) | |
download | numpy-83480b6eb106d8c7e1d9293d7adc988c7c670778.tar.gz |
BUG: BLD: add missing line in distutils/system_info.py
This was incorrectly refactored in commit 1e8e5154, causing the build to break
on some systems.
-rw-r--r-- | numpy/distutils/system_info.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 3249140e1..2fbab79d4 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1087,6 +1087,7 @@ class atlas_blas_info(atlas_info): dict_append(info, include_dirs=[h]) info['language'] = 'c' + atlas_version, atlas_extra_info = get_atlas_version(**atlas) dict_append(atlas, **atlas_extra_info) dict_append(info, **atlas) |