chore(deps): update dependency uv to v0.4.23 #2733
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==0.4.22
->==0.4.23
Release Notes
astral-sh/uv (uv)
v0.4.23
Compare Source
This release introduces a revamped system for defining package indexes, as an alternative to the existing pip-style
--index-url
and--extra-index-url
configuration options.You can now define named indexes in your
pyproject.toml
file using the[[tool.uv.index]]
table:Packages can be pinned to a specific index via
tool.uv.sources
, to ensure that a given package is installed from thecorrect index. For example, to ensure that
torch
is always installed from thepytorch
index:Indexes can also be marked as
explicit = true
to prevent packages from being installed from that indexunless explicitly pinned. For example, to ensure that
torch
is installed from thepytorch
index, but all otherpackages are installed from the default index:
To define an additional index outside a
pyproject.toml
file, use the--index
command-line argument(or the
UV_INDEX
environment variable); to replace the default index (PyPI), use the--default-index
command-lineargument (or
UV_DEFAULT_INDEX
).These changes are entirely backwards-compatible with the deprecated
--index-url
and--extra-index-url
options,which continue to work as before.
See the Index documentation for more.
Enhancements
uv add --index
or--default-index
(#7746)tool.uv.sources
(#7769)uv add
(#7747)--index
and--default-index
values intool.uv.sources
(#7910)requires-python
warnings (#8240)Forbidden
(403
) orUnauthorized
(401
) (#8264)cargo-dist
version (includes new installer features) (#8270)requires-python
is implicitly0
(#7959)Bug fixes
--emit-index-url
(#8226)uv-pep508
(#8282)uv build
sources (#8237)Documentation
--index-url
docs (#8267)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.