Commit 78fbbc9
authored
chore(deps-dev): Update uv requirement from 0.7.16 to 0.7.19 (#927)
Updates the requirements on [uv](https://github.com/astral-sh/uv) to
permit the latest version.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/uv/releases">uv's
releases</a>.</em></p>
<blockquote>
<h2>0.7.19</h2>
<h2>Release Notes</h2>
<p>The <strong><a
href="https://docs.astral.sh/uv/concepts/build-backend/">uv build
backend</a> is now stable</strong>, and considered ready for production
use.</p>
<p>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 —
<code>uv sync</code> on a new project (from <code>uv init</code>) is
10-30x faster than with other build backends.</p>
<p>To use uv as a build backend in an existing project, add
<code>uv_build</code> to the <code>[build-system]</code> section in your
<code>pyproject.toml</code>:</p>
<pre lang="toml"><code>[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
</code></pre>
<p>In a future release, it will replace <code>hatchling</code> as the
default in <code>uv init</code>. As before, uv will remain compatible
with all standards-compliant build backends.</p>
<h3>Python</h3>
<ul>
<li>Add PGO distributions of Python for aarch64 Linux, which are more
optimized for better performance</li>
</ul>
<p>See the <a
href="https://github.com/astral-sh/python-build-standalone/releases/tag/20250702">python-build-standalone
release</a> for more details.</p>
<h3>Enhancements</h3>
<ul>
<li>Ignore Python patch version for <code>--universal</code> pip compile
(<a
href="https://redirect.github.com/astral-sh/uv/pull/14405">#14405</a>)</li>
<li>Update the tilde version specifier warning to include more context
(<a
href="https://redirect.github.com/astral-sh/uv/pull/14335">#14335</a>)</li>
<li>Clarify behavior and hint on tool install when no executables are
available (<a
href="https://redirect.github.com/astral-sh/uv/pull/14423">#14423</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>Make project and interpreter lock acquisition non-fatal (<a
href="https://redirect.github.com/astral-sh/uv/pull/14404">#14404</a>)</li>
<li>Includes <code>sys.prefix</code> in cached environment keys to avoid
<code>--with</code> collisions across projects (<a
href="https://redirect.github.com/astral-sh/uv/pull/14403">#14403</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Add a migration guide from pip to uv projects (<a
href="https://redirect.github.com/astral-sh/uv/pull/12382">#12382</a>)</li>
</ul>
<h2>Install uv 0.7.19</h2>
<h3>Install prebuilt binaries via shell script</h3>
<pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf
https://github.com/astral-sh/uv/releases/download/0.7.19/uv-installer.sh
| sh
</code></pre>
<h3>Install prebuilt binaries via powershell script</h3>
<pre lang="sh"><code>powershell -ExecutionPolicy Bypass -c "irm
https://github.com/astral-sh/uv/releases/download/0.7.19/uv-installer.ps1
| iex"
</tr></table>
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/astral-sh/uv/blob/main/CHANGELOG.md">uv's
changelog</a>.</em></p>
<blockquote>
<h2>0.7.19</h2>
<p>The <strong><a
href="https://docs.astral.sh/uv/concepts/build-backend/">uv build
backend</a> is now stable</strong>, and considered ready for production
use.</p>
<p>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 —
<code>uv sync</code> on a new project (from <code>uv init</code>) is
10-30x faster than with other build backends.</p>
<p>To use uv as a build backend in an existing project, add
<code>uv_build</code> to the <code>[build-system]</code> section in your
<code>pyproject.toml</code>:</p>
<pre lang="toml"><code>[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
</code></pre>
<p>In a future release, it will replace <code>hatchling</code> as the
default in <code>uv init</code>. As before, uv will remain compatible
with all standards-compliant build backends.</p>
<h3>Python</h3>
<ul>
<li>Add PGO distributions of Python for aarch64 Linux, which are more
optimized for better performance</li>
</ul>
<p>See the <a
href="https://github.com/astral-sh/python-build-standalone/releases/tag/20250702">python-build-standalone
release</a> for more details.</p>
<h3>Enhancements</h3>
<ul>
<li>Ignore Python patch version for <code>--universal</code> pip compile
(<a
href="https://redirect.github.com/astral-sh/uv/pull/14405">#14405</a>)</li>
<li>Update the tilde version specifier warning to include more context
(<a
href="https://redirect.github.com/astral-sh/uv/pull/14335">#14335</a>)</li>
<li>Clarify behavior and hint on tool install when no executables are
available (<a
href="https://redirect.github.com/astral-sh/uv/pull/14423">#14423</a>)</li>
</ul>
<h3>Bug fixes</h3>
<ul>
<li>Make project and interpreter lock acquisition non-fatal (<a
href="https://redirect.github.com/astral-sh/uv/pull/14404">#14404</a>)</li>
<li>Includes <code>sys.prefix</code> in cached environment keys to avoid
<code>--with</code> collisions across projects (<a
href="https://redirect.github.com/astral-sh/uv/pull/14403">#14403</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>Add a migration guide from pip to uv projects (<a
href="https://redirect.github.com/astral-sh/uv/pull/12382">#12382</a>)</li>
</ul>
<h2>0.7.18</h2>
<h3>Python</h3>
<ul>
<li>
<p>Added arm64 Windows Python 3.11, 3.12, 3.13, and 3.14</p>
<p>These are not downloaded by default, since x86-64 Python has broader
ecosystem support on Windows.
However, they can be requested with
<code>cpython-<version>-windows-aarch64</code>.</p>
</li>
</ul>
<p>See the <a
href="https://github.com/astral-sh/python-build-standalone/releases/tag/20250630">python-build-standalone
release</a> for more details.</p>
<h3>Enhancements</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/astral-sh/uv/commit/38ee6ec80096e69a244e82b9cdc3c12feceada7f"><code>38ee6ec</code></a>
Bump version to 0.7.19 (<a
href="https://redirect.github.com/astral-sh/uv/issues/14431">#14431</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/71b5ba13d76ad9e1b5bdf48941022fa7e89e4f3b"><code>71b5ba1</code></a>
Stabilize the uv build backend (<a
href="https://redirect.github.com/astral-sh/uv/issues/14311">#14311</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/5f2857a1c71a8f9d7c18a8e697ae5bd93a448cdf"><code>5f2857a</code></a>
Add linux aarch64 smoke tests (<a
href="https://redirect.github.com/astral-sh/uv/issues/14427">#14427</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/a58969feef147c4fb9152005e3d1b93b13be3ade"><code>a58969f</code></a>
Fix <code>workspace_unsatisfiable_member_dependencies</code> (<a
href="https://redirect.github.com/astral-sh/uv/issues/14429">#14429</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/3bb8ac610ca5690fce0eea9da792dbe6eecaad05"><code>3bb8ac6</code></a>
Sync latest Python releases (<a
href="https://redirect.github.com/astral-sh/uv/issues/14426">#14426</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/ec54dce9191c8cde770572afde78ab4ce4001f6a"><code>ec54dce</code></a>
Includes <code>sys.prefix</code> in cached environment keys to avoid
<code>--with</code> collisions...</li>
<li><a
href="https://github.com/astral-sh/uv/commit/a6bb65c78deaf6fef7b901d4d24d350368db2723"><code>a6bb65c</code></a>
Clarify behavior and hint on tool install when no executables are
available (...</li>
<li><a
href="https://github.com/astral-sh/uv/commit/743260b1f53e4ba11cc904ced2c717f509a7b0e2"><code>743260b</code></a>
Make project and interpreter lock acquisition non-fatal (<a
href="https://redirect.github.com/astral-sh/uv/issues/14404">#14404</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/2f53ea5c5c3f9939d87ab1aa75c5208a953532c1"><code>2f53ea5</code></a>
Add a migration guide from pip to uv projects (<a
href="https://redirect.github.com/astral-sh/uv/issues/12382">#12382</a>)</li>
<li><a
href="https://github.com/astral-sh/uv/commit/a9ea756d141d935ab321a1aabdb78720d536073a"><code>a9ea756</code></a>
Ignore Python patch version for <code>--universal</code> pip compile (<a
href="https://redirect.github.com/astral-sh/uv/issues/14405">#14405</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/astral-sh/uv/compare/0.7.16...0.7.19">compare
view</a></li>
</ul>
</details>
<br />
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-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
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)
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent c4198b5 commit 78fbbc9
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
106 | 106 | | |
107 | 107 | | |
108 | 108 | | |
109 | | - | |
| 109 | + | |
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
| |||
0 commit comments