Update PyTorch test to latest `jinja2` (#10084)

## Summary

This index doesn't include `exclude_newer`, unfortunately, so this
happens from time to time.
This commit is contained in:
Charlie Marsh 2024-12-21 16:01:10 -05:00 committed by GitHub
parent 8ff1dfd9b5
commit 6e8114ae53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -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 = [
@ -21438,6 +21438,9 @@ fn lock_pytorch_cpu() -> Result<()> {
name = "project"
version = "0.1.0"
source = { virtual = "." }
dependencies = [
{ name = "jinja2" },
]
[package.optional-dependencies]
cpu = [
@ -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" } },