From 452bc4972d770793df1f14198cf394cabd52f5b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 18:07:23 +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 41de27c..75e9f12 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.1"] 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.1", "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.1", ]