Skip to content

Commit

Permalink
Revert "try other hack for scipy bug with mkl"
Browse files Browse the repository at this point in the history
This reverts commit 4bae99b.
  • Loading branch information
bodonoghue committed Apr 27, 2016
1 parent 05f27d7 commit 56b1ba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run_install():
# ugly hack due to scipy bug
if 'libraries' in blas_info:
if 'mkl_intel_lp64' in blas_info['libraries']:
blas_info['libraries'].remove('mkl_intel_lp64')
blas_info = get_info('blas')
if not blas_info:
blas_info = get_info('blas')
print(blas_info)
Expand All @@ -64,7 +64,7 @@ def run_install():
# ugly hack due to scipy bug
if 'libraries' in lapack_info:
if 'mkl_intel_lp64' in lapack_info['libraries']:
lapack_info['libraries'].remove('mkl_intel_lp64')
lapack_info = get_info('lapack')
if not lapack_info:
lapack_info = get_info('lapack')
print(lapack_info)
Expand Down

0 comments on commit 56b1ba3

Please sign in to comment.