Skip to content

Commit

Permalink
Update PyTorch test to latest jinja2 (#10084)
Browse files Browse the repository at this point in the history
## Summary

This index doesn't include `exclude_newer`, unfortunately, so this
happens from time to time.
  • Loading branch information
charliermarsh authored Dec 21, 2024
1 parent 8ff1dfd commit 6e8114a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 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 = []
dependencies = ["jinja2<=3.1.4"]

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

[package.optional-dependencies]
cpu = [
Expand All @@ -21453,6 +21456,7 @@ fn lock_pytorch_cpu() -> Result<()> {

[package.metadata]
requires-dist = [
{ name = "jinja2", specifier = "<=3.1.4" },
{ 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 6e8114a

Please sign in to comment.