From 7fe4ccdf384bb2fa34f156f1ed5d0e89c5078aef Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 9 Feb 2024 15:40:34 +0100 Subject: [PATCH] Disabled forced compiler override in setup Commented out the hardcoded compiler environment setting in the setup script to allow for greater flexibility in users' build environments. Letting the user or the system decide the appropriate C++ compiler prevents potential conflicts with predefined environment configurations. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b5fd057..0946aec 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import os from Cython.Build import cythonize -os.environ['CXX'] = 'h5c++' +#os.environ['CXX'] = 'h5c++' class BuildExtCommand(build_ext): """Custom build_ext command to ensure that the submodule is retrieved and built."""