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
First off, thank you for your work on uv. I read in #7475 that one of the intended uses of uv build is the following:
Publishing a pure Python package from CI
Call uv build
Clear the venv, install the wheel, run a smoke test
Clear the venv, install the source distribution, run a smoke test
Call uv publish
The docs mention that a built package can be tested with uv run --with <PACKAGE> --no-project -- python -c "import <PACKAGE>". Is there a complete example demonstrating this in practice from CI?
The text was updated successfully, but these errors were encountered:
In addition, can you share an example workflow file for using this with GitHub Actions, or at least a hint? If I am already using the recommended workflow (without the signing steps) for trusted publishing from GHA, do I just replace the build step internals with uv build? I don't think using uv publish is appropriate in that case, correct?
First off, thank you for your work on uv. I read in #7475 that one of the intended uses of
uv build
is the following:The docs mention that a built package can be tested with
uv run --with <PACKAGE> --no-project -- python -c "import <PACKAGE>"
. Is there a complete example demonstrating this in practice from CI?The text was updated successfully, but these errors were encountered: