From 1fba0c8885979cceeacf15b790add4d858632269 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 12:51:53 +0000 Subject: [PATCH] deps(python): update ray requirement in /python Updates the requirements on [ray](https://github.com/ray-project/ray) to permit the latest version. - [Release notes](https://github.com/ray-project/ray/releases) - [Commits](https://github.com/ray-project/ray/compare/ray-2.55.1...ray-2.56.1) --- updated-dependencies: - dependency-name: ray dependency-version: 2.56.1 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 b173f76..b48a02c 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -27,14 +27,14 @@ dependencies = [ [project.optional-dependencies] torch = ["torch>=2.13.0"] -ray = ["ray[data]>=2.55.1"] +ray = ["ray[data]>=2.56.1"] pytorch-geometric = ["torch-geometric>=2.8.0", "torch>=2.13.0"] otel = [ "opentelemetry-api>=1.43.0", "opentelemetry-sdk>=1.44.0", "opentelemetry-exporter-otlp>=1.43.0", ] -all = ["torch>=2.13.0", "ray[data]>=2.55.1", "torch-geometric>=2.8.0"] +all = ["torch>=2.13.0", "ray[data]>=2.56.1", "torch-geometric>=2.8.0"] [project.scripts] aethergraph = "aethergraph.cli:main" @@ -111,5 +111,5 @@ dev = [ test = [ "torch>=2.13.0", "torch-geometric>=2.8.0", - "ray[data]>=2.55.1", + "ray[data]>=2.56.1", ]