libbdsg
libbdsg copied to clipboard
upgrade libbdsg version from pip installation
I tried to download the module via pip, but I realized that the version on pip was not up to date. Could you please update it?
in setup.py for mac user you have to add "DCMAKE_OSX_DEPLOYMENT_TARGET=10.12" here (for avoiding lib version issue on time object something) :
cmake_args = [
'-DRUN_DOXYGEN=OFF',
f'-DPYTHON_EXECUTABLE={sys.executable}',
'-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=' + str(extdir.absolute()),
'-DCMAKE_BUILD_TYPE=' + config,
'-DCMAKE_OSX_DEPLOYMENT_TARGET=10.12' # add for mac user
]