Loading setup.py +27 −36 Original line number Diff line number Diff line Loading @@ -109,7 +109,6 @@ class add_path(): except ValueError: pass try: with add_path('./src/'): for generator in cpp_generators: code = compile(open(generator).read(),generator,"exec") Loading Loading @@ -138,14 +137,6 @@ try: language="c++", )) except ImportError as e: print(f"Compilation disabled since {e.name} package is missing") modules = [] ext_libraries = [] except Exception as e: print("Error during generation of cpp sources ") print(e) extra_compile_args = { 'unix': ['-fopenmp','-std=c++17' ], 'msvc': ['/openmp', '/std:c++17'] Loading Loading
setup.py +27 −36 Original line number Diff line number Diff line Loading @@ -109,7 +109,6 @@ class add_path(): except ValueError: pass try: with add_path('./src/'): for generator in cpp_generators: code = compile(open(generator).read(),generator,"exec") Loading Loading @@ -138,14 +137,6 @@ try: language="c++", )) except ImportError as e: print(f"Compilation disabled since {e.name} package is missing") modules = [] ext_libraries = [] except Exception as e: print("Error during generation of cpp sources ") print(e) extra_compile_args = { 'unix': ['-fopenmp','-std=c++17' ], 'msvc': ['/openmp', '/std:c++17'] Loading