From 6cb494ab7b9e01c1ebd0b8a0e4923e7ea61c75c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 18:05:01 +0000 Subject: [PATCH] deps(python): update torch-geometric requirement in /python Updates the requirements on [torch-geometric](https://github.com/pyg-team/pytorch_geometric) to permit the latest version. - [Release notes](https://github.com/pyg-team/pytorch_geometric/releases) - [Changelog](https://github.com/pyg-team/pytorch_geometric/blob/2.8.0.post1/CHANGELOG.md) - [Commits](https://github.com/pyg-team/pytorch_geometric/compare/2.8.0...2.8.0.post1) --- updated-dependencies: - dependency-name: torch-geometric dependency-version: 2.8.0.post1 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- python/pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 41de27c..d2a01d9 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -28,13 +28,13 @@ dependencies = [ [project.optional-dependencies] torch = ["torch>=2.12.1"] ray = ["ray[data]>=2.55.1"] -pytorch-geometric = ["torch-geometric>=2.8.0", "torch>=2.12.1"] +pytorch-geometric = ["torch-geometric>=2.8.0.post1", "torch>=2.12.1"] otel = [ "opentelemetry-api>=1.43.0", "opentelemetry-sdk>=1.43.0", "opentelemetry-exporter-otlp>=1.43.0", ] -all = ["torch>=2.12.1", "ray[data]>=2.55.1", "torch-geometric>=2.8.0"] +all = ["torch>=2.12.1", "ray[data]>=2.55.1", "torch-geometric>=2.8.0.post1"] [project.scripts] aethergraph = "aethergraph.cli:main" @@ -110,6 +110,6 @@ dev = [ ] test = [ "torch>=2.12.1", - "torch-geometric>=2.8.0", + "torch-geometric>=2.8.0.post1", "ray[data]>=2.55.1", ]