mirror of https://github.com/astral-sh/uv
Bump version to v0.1.3 (#1557)
This commit is contained in:
parent
73fdad6ea2
commit
1110489c29
|
|
@ -4114,7 +4114,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.2"
|
version = "0.1.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anstream",
|
"anstream",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
||||||
12
README.md
12
README.md
|
|
@ -1,9 +1,9 @@
|
||||||
# uv
|
# uv
|
||||||
|
|
||||||
[](https://github.com/astral-sh/uv)
|
[](https://github.com/astral-sh/uv)
|
||||||
[](https://pypi.python.org/pypi/uv)
|
[](https://pypi.python.org/pypi/uv)
|
||||||
[](https://pypi.python.org/pypi/uv)
|
[](https://pypi.python.org/pypi/uv)
|
||||||
[](https://pypi.python.org/pypi/uv)
|
[](https://pypi.python.org/pypi/uv)
|
||||||
[](https://github.com/astral-sh/uv/actions)
|
[](https://github.com/astral-sh/uv/actions)
|
||||||
[](https://discord.gg/astral-sh)
|
[](https://discord.gg/astral-sh)
|
||||||
|
|
||||||
|
|
@ -171,7 +171,7 @@ its own. For example, setting `VIRTUAL_ENV=/path/to/venv` will cause uv to insta
|
||||||
uv uses aggressive caching to avoid re-downloading (and re-building dependencies) that have
|
uv uses aggressive caching to avoid re-downloading (and re-building dependencies) that have
|
||||||
already been accessed in prior runs.
|
already been accessed in prior runs.
|
||||||
|
|
||||||
The specifics of uv's caching semantics vary based on the nature of the dependency:
|
The specifics of uv's caching semantics vary based on the nature of the dependency:
|
||||||
|
|
||||||
- **For registry dependencies** (like those downloaded from PyPI), uv respects HTTP caching headers.
|
- **For registry dependencies** (like those downloaded from PyPI), uv respects HTTP caching headers.
|
||||||
- **For direct URL dependencies**, uv respects HTTP caching headers, and also caches based on
|
- **For direct URL dependencies**, uv respects HTTP caching headers, and also caches based on
|
||||||
|
|
@ -187,7 +187,7 @@ If you're running into caching issues, uv includes a few escape hatches:
|
||||||
- To force uv to revalidate cached data for all dependencies, run `uv pip install --refresh ...`.
|
- To force uv to revalidate cached data for all dependencies, run `uv pip install --refresh ...`.
|
||||||
- To force uv to revalidate cached data for a specific dependency, run, e.g., `uv pip install --refresh-package flask ...`.
|
- To force uv to revalidate cached data for a specific dependency, run, e.g., `uv pip install --refresh-package flask ...`.
|
||||||
- To force uv to ignore existing installed versions, run `uv pip install --reinstall ...`.
|
- To force uv to ignore existing installed versions, run `uv pip install --reinstall ...`.
|
||||||
- To clear the global cache entirely, run `uv clean`.
|
- To clear the global cache entirely, run `uv clean`.
|
||||||
|
|
||||||
### Resolution strategy
|
### Resolution strategy
|
||||||
|
|
||||||
|
|
@ -257,7 +257,7 @@ By default, uv will accept pre-release versions during dependency resolution in
|
||||||
If dependency resolution fails due to a transitive pre-release, uv will prompt the user to
|
If dependency resolution fails due to a transitive pre-release, uv will prompt the user to
|
||||||
re-run with `--prerelease=allow`, to allow pre-releases for all dependencies.
|
re-run with `--prerelease=allow`, to allow pre-releases for all dependencies.
|
||||||
|
|
||||||
Alternatively, you can add the transitive dependency to your `requirements.in` file with
|
Alternatively, you can add the transitive dependency to your `requirements.in` file with
|
||||||
pre-release specifier (e.g., `flask>=2.0.0rc1`) to opt in to pre-release support for that specific
|
pre-release specifier (e.g., `flask>=2.0.0rc1`) to opt in to pre-release support for that specific
|
||||||
dependency.
|
dependency.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.2"
|
version = "0.1.3"
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
homepage = { workspace = true }
|
homepage = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ build-backend = "maturin"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.2"
|
version = "0.1.3"
|
||||||
description = "An extremely fast Python package installer and resolver, written in Rust."
|
description = "An extremely fast Python package installer and resolver, written in Rust."
|
||||||
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue