From bcd633bd0f8f18b9758d0e10285ba8806e410114 Mon Sep 17 00:00:00 2001 From: lukashergt Date: Wed, 17 Jun 2020 08:44:54 +0100 Subject: [PATCH] move closing bracket to new line such that install without OpenMP can safely delete the line containing 'lgomp' --- python/setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index c2920577e..e5d047df9 100644 --- a/python/setup.py +++ b/python/setup.py @@ -38,7 +38,8 @@ include_dirs=[nm.get_include(), include_folder], libraries=liblist, library_dirs=[root_folder, GCCPATH], - extra_link_args=['-lgomp']) + extra_link_args=['-lgomp'] + ) import six classy_ext.cython_directives = {'language_level': "3" if six.PY3 else "2"}