diff options
author | David Cournapeau <cournape@gmail.com> | 2009-12-03 16:00:49 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-12-03 16:00:49 +0000 |
commit | d011d924657c8d3fa86078fb871930f0ef94ee4d (patch) | |
tree | 238c5b9f0e40a0d5bc755be9139ecdef2f82904a /numpy/linalg | |
parent | efadf0d436856dbd1b756035fc1faf46a607b346 (diff) | |
download | numpy-d011d924657c8d3fa86078fb871930f0ef94ee4d.tar.gz |
Make linalg setup.py runnable under python3.
Diffstat (limited to 'numpy/linalg')
-rw-r--r-- | numpy/linalg/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/linalg/setup.py b/numpy/linalg/setup.py index fff4ca980..1fb7a3acd 100644 --- a/numpy/linalg/setup.py +++ b/numpy/linalg/setup.py @@ -12,11 +12,11 @@ def configuration(parent_package='',top_path=None): lapack_info = get_info('lapack_opt',0) # and {} def get_lapack_lite_sources(ext, build_dir): if not lapack_info: - print "### Warning: Using unoptimized lapack ###" + print("### Warning: Using unoptimized lapack ###") return ext.depends[:-1] else: if sys.platform=='win32': - print "### Warning: python_xerbla.c is disabled ###" + print("### Warning: python_xerbla.c is disabled ###") return ext.depends[:1] return ext.depends[:2] |