aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b3bddd8..ff6b0a9 100644
--- a/setup.py
+++ b/setup.py
@@ -111,7 +111,8 @@ def get_lapack_info():
lapack_info = get_info("lapack_opt", 0)
if (not lapack_info) or atlas_not_found(lapack_info):
- print("Warning: Found no lapack info, using 'lapack' guess")
+ # This is a guess, but seems to work in practice. Need more systems to
+ # test this fully.
lapack_libs = ["lapack"]
lapack_info.pop("libraries", None)
else: