v0.4.3
版本发布时间: 2022-06-27 14:45:44
go-python/gopy最新发布版本:v0.4.8(2023-12-13 04:17:42)
Added by @pyalex:
"dynamic-link" (false by default) that changes flags used on linking stage (passed to ld).
When this flag is enabled instead of linking to python (via -l python3.x) we will use flags similar to what python itself uses during building extensions (see distutils.sysconfig.get_config_var("LDSHARED")). This allows packing the resulting .so / .dylib file into python package and distribute it via PyPi.
This has been already tested during publishing feast python package.