libbdsg icon indicating copy to clipboard operation
libbdsg copied to clipboard

upgrade libbdsg version from pip installation

Open Plogeur opened this issue 1 year ago • 1 comments

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?

Plogeur avatar Aug 26 '24 08:08 Plogeur

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  
        ]

Plogeur avatar Dec 17 '24 19:12 Plogeur