You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
the setup.cfg file allows to define default values for arguments of setuptools / distutils commands. With the following file:
[build_rust]
inplace = truerelease = true
simply running python setup.py build_rust will build all the extensions inplace and in release mode as expected.
Unfortunately, running python setup.py build or python setup.py build_ext does not. I suspect there's a step in the monkey-patching where the build_rust command is ran without having finalize_options called or something like that.