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.
This commit is contained in:
Kumi 2024-02-09 15:40:34 +01:00
parent c0d1fbbf66
commit 7fe4ccdf38
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -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."""