From dd7770febd40574680bd76533f41723e50b67e26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2026 18:04:44 +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.57.0...ray-2.58.0) --- updated-dependencies: - dependency-name: ray dependency-version: 2.58.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 e2c95c1..4e12752 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -30,14 +30,14 @@ dependencies = [ [project.optional-dependencies] torch = ["torch>=2.13.0"] -ray = ["ray[data]>=2.57.0"] +ray = ["ray[data]>=2.58.0"] pytorch-geometric = ["torch-geometric>=2.8.0.post1", "torch>=2.13.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.13.0", "ray[data]>=2.58.0", "torch-geometric>=2.8.0.post1"] [project.scripts] aethergraph = "aethergraph.cli:main" @@ -135,5 +135,5 @@ dev = [ test = [ "torch>=2.13.0", "torch-geometric>=2.8.0.post1", - "ray[data]>=2.57.0", + "ray[data]>=2.58.0", ]