Skip to content

Commit

Permalink
Update PyTorch test to latest numpy (#10087)
Browse files Browse the repository at this point in the history
  • Loading branch information
charliermarsh authored Dec 21, 2024
1 parent 6e8114a commit ad92aaf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/uv/tests/it/lock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21071,7 +21071,7 @@ fn lock_pytorch_cpu() -> Result<()> {
name = "project"
version = "0.1.0"
requires-python = ">=3.12.0"
dependencies = ["jinja2<=3.1.4"]
dependencies = ["jinja2<=3.1.4", "numpy<=2.2.0"]

[project.optional-dependencies]
cpu = [
Expand Down Expand Up @@ -21440,6 +21440,7 @@ fn lock_pytorch_cpu() -> Result<()> {
source = { virtual = "." }
dependencies = [
{ name = "jinja2" },
{ name = "numpy" },
]

[package.optional-dependencies]
Expand All @@ -21457,6 +21458,7 @@ fn lock_pytorch_cpu() -> Result<()> {
[package.metadata]
requires-dist = [
{ name = "jinja2", specifier = "<=3.1.4" },
{ name = "numpy", specifier = "<=2.2.0" },
{ name = "torch", marker = "extra == 'cpu'", specifier = ">=2.5.1", index = "https://download.pytorch.org/whl/cpu", conflict = { package = "project", extra = "cpu" } },
{ name = "torch", marker = "extra == 'cu124'", specifier = ">=2.5.1", index = "https://download.pytorch.org/whl/cu124", conflict = { package = "project", extra = "cu124" } },
{ name = "torchvision", marker = "extra == 'cpu'", specifier = ">=0.20.1", index = "https://download.pytorch.org/whl/cpu", conflict = { package = "project", extra = "cpu" } },
Expand Down

0 comments on commit ad92aaf

Please sign in to comment.