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
Configure create_package_and_install to be more responsive to logging settings (#42862)
* update build_package function (heavily used by create_package_and_install) to be much less verbose by default. We do not see to see
all build output for every package when it's just standard assembly. we have verify_sdist and verify_whl, and beyond that devs should validate
the contents of their packages.
* in error cases, we should still see error output, but otherwise, users will have to set LOG_LEVEL environment variable at runtime to see the raw build logs
---------
Co-authored-by: Copilot <[email protected]>
Co-authored-by: McCoy Patiño <[email protected]>
# when building with pyproject, we will use `python -m build` to build the package
242
247
# -n argument will not use an isolated environment, which means the current environment must have all the dependencies of the package installed, to successfully
@@ -247,14 +252,14 @@ def create_package(
247
252
# we assume the presence of `wheel`, `build`, `setuptools>=61.0.0`
0 commit comments