From d4055ccbec2c1004eb5db41675be786bfda0407e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 18:06:12 +0000 Subject: [PATCH] deps(python): update torch requirement in /python Updates the requirements on [torch](https://github.com/pytorch/pytorch) to permit the latest version. - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/ciflow/torchtitan/125995...v2.14.0) --- updated-dependencies: - dependency-name: torch dependency-version: 2.14.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- python/pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index e2c95c1..90960c1 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -29,15 +29,15 @@ dependencies = [ ] [project.optional-dependencies] -torch = ["torch>=2.13.0"] +torch = ["torch>=2.14.0"] ray = ["ray[data]>=2.57.0"] -pytorch-geometric = ["torch-geometric>=2.8.0.post1", "torch>=2.13.0"] +pytorch-geometric = ["torch-geometric>=2.8.0.post1", "torch>=2.14.0"] otel = [ "opentelemetry-api>=1.44.0", "opentelemetry-sdk>=1.44.0", "opentelemetry-exporter-otlp>=1.44.0", ] -all = ["torch>=2.13.0", "ray[data]>=2.57.0", "torch-geometric>=2.8.0.post1"] +all = ["torch>=2.14.0", "ray[data]>=2.57.0", "torch-geometric>=2.8.0.post1"] [project.scripts] aethergraph = "aethergraph.cli:main" @@ -133,7 +133,7 @@ dev = [ "ruff>=0.16.3", ] test = [ - "torch>=2.13.0", + "torch>=2.14.0", "torch-geometric>=2.8.0.post1", "ray[data]>=2.57.0", ]