Bump version to 0.7.19 (#14431)

This commit is contained in:
Zanie Blue 2025-07-02 16:19:52 -05:00 committed by GitHub
parent 71b5ba13d7
commit 38ee6ec800
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 68 additions and 29 deletions

View file

@ -13,11 +13,11 @@ performance and user experience.
## Choosing a build backend
The uv build backend is a good choice for most Python projects that are using uv. It has reasonable
defaults, with the goal of requiring zero configuration for most users, but provides flexible
configuration that allows most Python project structures. It integrates tightly with uv, to improve
messaging and user experience. It validates project metadata and structures, preventing common
mistakes. And, finally, it's very fast.
The uv build backend is a great choice for most Python projects. It has reasonable defaults, with
the goal of requiring zero configuration for most users, but provides flexible configuration to
accommodate most Python project structures. It integrates tightly with uv, to improve messaging and
user experience. It validates project metadata and structures, preventing common mistakes. And,
finally, it's very fast.
The uv build backend currently **only supports pure Python code**. An alternative backend is
required to build a
@ -36,7 +36,7 @@ To use uv as a build backend in an existing project, add `uv_build` to the
```toml title="pyproject.toml"
[build-system]
requires = ["uv_build>=0.7.18,<0.8.0"]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
```