From a6dcd35b8df48ca0f0ba98a3d7433e1041040af0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ne=C4=8Dada?= Date: Wed, 13 Mar 2019 16:23:23 +0200 Subject: [PATCH] Revert setup.py to standard blas names and increment version. Former-commit-id: e98c7ba026caefd85fd42288fb7e1987c96e5ad1 --- setup.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 51696a0..7d652a4 100755 --- a/setup.py +++ b/setup.py @@ -31,21 +31,18 @@ qpms_c = Extension('qpms_c', 'qpms/error.c'], extra_compile_args=['-std=c99','-ggdb', '-O0', '-DQPMS_COMPILE_PYTHON_EXTENSIONS', # this is required - #'-DAN2', - #'-DBN2', #'-DQPMS_USE_OMP', '-DDISABLE_NDEBUG', # uncomment to enable assertions in the modules #'-fopenmp', ], - libraries=['gsl', 'lapacke', 'cblas_LINUX', 'blas_LINUX', - 'gslcblas', #'omp' + libraries=['gsl', 'lapacke', 'blas', 'gslcblas', #'omp' # TODO resolve the problem with openblas (missing gotoblas symbol) and preferable use other blas library ], runtime_library_dirs=os.environ['LD_LIBRARY_PATH'].split(':') if 'LD_LIBRARY_PATH' in os.environ else [] ) setup(name='qpms', - version = "0.2.994", + version = "0.2.995", packages=['qpms'], setup_requires=['cython>=0.28',], install_requires=['cython>=0.28','quaternion','spherical_functions','scipy>=0.18.0', 'sympy>=1.2'],