Skip to content

chore(deps-dev): Update uv requirement from 0.7.16 to 0.7.19 #927

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 5, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 5, 2025

Updates the requirements on uv to permit the latest version.

Release notes

Sourced from uv's releases.

0.7.19

Release Notes

The uv build backend is now stable, and considered ready for production use.

The uv build backend is a great choice for pure 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 — uv sync on a new project (from uv init) is 10-30x faster than with other build backends.

To use uv as a build backend in an existing project, add uv_build to the [build-system] section in your pyproject.toml:

[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"

In a future release, it will replace hatchling as the default in uv init. As before, uv will remain compatible with all standards-compliant build backends.

Python

  • Add PGO distributions of Python for aarch64 Linux, which are more optimized for better performance

See the python-build-standalone release for more details.

Enhancements

  • Ignore Python patch version for --universal pip compile (#14405)
  • Update the tilde version specifier warning to include more context (#14335)
  • Clarify behavior and hint on tool install when no executables are available (#14423)

Bug fixes

  • Make project and interpreter lock acquisition non-fatal (#14404)
  • Includes sys.prefix in cached environment keys to avoid --with collisions across projects (#14403)

Documentation

  • Add a migration guide from pip to uv projects (#12382)

Install uv 0.7.19

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.7.19/uv-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/uv/releases/download/0.7.19/uv-installer.ps1 | iex"
</tr></table> 

... (truncated)

Changelog

Sourced from uv's changelog.

0.7.19

The uv build backend is now stable, and considered ready for production use.

The uv build backend is a great choice for pure 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 — uv sync on a new project (from uv init) is 10-30x faster than with other build backends.

To use uv as a build backend in an existing project, add uv_build to the [build-system] section in your pyproject.toml:

[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"

In a future release, it will replace hatchling as the default in uv init. As before, uv will remain compatible with all standards-compliant build backends.

Python

  • Add PGO distributions of Python for aarch64 Linux, which are more optimized for better performance

See the python-build-standalone release for more details.

Enhancements

  • Ignore Python patch version for --universal pip compile (#14405)
  • Update the tilde version specifier warning to include more context (#14335)
  • Clarify behavior and hint on tool install when no executables are available (#14423)

Bug fixes

  • Make project and interpreter lock acquisition non-fatal (#14404)
  • Includes sys.prefix in cached environment keys to avoid --with collisions across projects (#14403)

Documentation

  • Add a migration guide from pip to uv projects (#12382)

0.7.18

Python

  • Added arm64 Windows Python 3.11, 3.12, 3.13, and 3.14

    These are not downloaded by default, since x86-64 Python has broader ecosystem support on Windows. However, they can be requested with cpython-<version>-windows-aarch64.

See the python-build-standalone release for more details.

Enhancements

... (truncated)

Commits
  • 38ee6ec Bump version to 0.7.19 (#14431)
  • 71b5ba1 Stabilize the uv build backend (#14311)
  • 5f2857a Add linux aarch64 smoke tests (#14427)
  • a58969f Fix workspace_unsatisfiable_member_dependencies (#14429)
  • 3bb8ac6 Sync latest Python releases (#14426)
  • ec54dce Includes sys.prefix in cached environment keys to avoid --with collisions...
  • a6bb65c Clarify behavior and hint on tool install when no executables are available (...
  • 743260b Make project and interpreter lock acquisition non-fatal (#14404)
  • 2f53ea5 Add a migration guide from pip to uv projects (#12382)
  • a9ea756 Ignore Python patch version for --universal pip compile (#14405)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [uv](https://github.com/astral-sh/uv) to permit the latest version.
- [Release notes](https://github.com/astral-sh/uv/releases)
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md)
- [Commits](astral-sh/uv@0.7.16...0.7.19)

---
updated-dependencies:
- dependency-name: uv
  dependency-version: 0.7.19
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies topic: modify/update a dependency label Jul 5, 2025
@dependabot dependabot bot requested a review from a team as a code owner July 5, 2025 02:57
@dependabot dependabot bot added the dependencies topic: modify/update a dependency label Jul 5, 2025
@jkowalleck jkowalleck merged commit 78fbbc9 into main Jul 5, 2025
31 of 32 checks passed
@dependabot dependabot bot deleted the dependabot/pip/uv-0.7.19 branch July 5, 2025 16:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies topic: modify/update a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant