From dd2b9cdfbe63fd4976bb48685d9c284447b365fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 18:05:15 +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.0) --- updated-dependencies: - dependency-name: ray dependency-version: 2.56.0 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..5c82ee4 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -27,14 +27,14 @@ dependencies = [ [project.optional-dependencies] torch = ["torch>=2.12.1"] -ray = ["ray[data]>=2.55.1"] +ray = ["ray[data]>=2.56.0"] pytorch-geometric = ["torch-geometric>=2.8.0", "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.56.0", "torch-geometric>=2.8.0"] [project.scripts] aethergraph = "aethergraph.cli:main" @@ -111,5 +111,5 @@ dev = [ test = [ "torch>=2.12.1", "torch-geometric>=2.8.0", - "ray[data]>=2.55.1", + "ray[data]>=2.56.0", ]