uv: 0.1.8 -> 0.1.9

Diff: https://github.com/astral-sh/uv/compare/0.1.8...0.1.9
This commit is contained in:
Gaetan Lepage 2024-02-23 09:08:24 +01:00
parent 92cf4feb2b
commit bf4bbc9694
2 changed files with 16 additions and 3 deletions

View File

@ -909,6 +909,7 @@ dependencies = [
"tracing",
"url",
"urlencoding",
"uv-auth",
"uv-fs",
"uv-git",
"uv-normalize",
@ -4127,7 +4128,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
[[package]]
name = "uv"
version = "0.1.8"
version = "0.1.9"
dependencies = [
"anstream",
"anyhow",
@ -4193,6 +4194,14 @@ dependencies = [
"which",
]
[[package]]
name = "uv-auth"
version = "0.0.1"
dependencies = [
"tracing",
"url",
]
[[package]]
name = "uv-build"
version = "0.0.1"
@ -4284,6 +4293,7 @@ dependencies = [
"tracing",
"url",
"urlencoding",
"uv-auth",
"uv-cache",
"uv-fs",
"uv-normalize",
@ -4590,9 +4600,12 @@ name = "uv-traits"
version = "0.0.1"
dependencies = [
"anyhow",
"clap",
"distribution-types",
"once-map",
"pep508_rs",
"serde",
"serde_json",
"tokio",
"uv-cache",
"uv-interpreter",

View File

@ -15,14 +15,14 @@
python3.pkgs.buildPythonApplication rec {
pname = "uv";
version = "0.1.8";
version = "0.1.9";
pyproject = true;
src = fetchFromGitHub {
owner = "astral-sh";
repo = "uv";
rev = version;
hash = "sha256-nFhCl/5s+Ts3pTXtweoUXfBA3PN2jm08eHalMekPwnM=";
hash = "sha256-N9m0dvJXABAY7dFTE5i7KXIHF9AMEFptEwKFoBsxmyE=";
};
cargoDeps = rustPlatform.importCargoLock {