From 6d1348e1ad8f09d253f542d14b05a1097a96df7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 10:57:03 +0000 Subject: [PATCH 1/2] build(deps-dev): update torch requirement Updates the requirements on [torch](https://github.com/pytorch/pytorch) to permit the latest version. - [Release notes](https://github.com/pytorch/pytorch/releases) - [Changelog](https://github.com/pytorch/pytorch/blob/main/RELEASE.md) - [Commits](https://github.com/pytorch/pytorch/compare/v2.8.0...v2.10.0) --- updated-dependencies: - dependency-name: torch dependency-version: 2.10.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9c6f213cfd..f8735635cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -167,7 +167,7 @@ pin_pytorch_cpu = [ "torch; platform_machine=='x86_64' and platform_system == 'Darwin'", ] pin_pytorch_gpu = [ - "torch>=2.7,<2.10", + "torch>=2.7,<2.11", ] pin_jax = [ "jax==0.5.0;python_version>='3.10'", From 0b28f78bf4ccb519b2108dffcc1bc051ac697080 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Fri, 23 Jan 2026 17:26:37 +0800 Subject: [PATCH 2/2] pin pytorch gpu to 2.10.0 since GPU environments are reuseable Signed-off-by: Jinzhe Zeng --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f8735635cb..e95f21e2ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -167,7 +167,7 @@ pin_pytorch_cpu = [ "torch; platform_machine=='x86_64' and platform_system == 'Darwin'", ] pin_pytorch_gpu = [ - "torch>=2.7,<2.11", + "torch==2.10.0", ] pin_jax = [ "jax==0.5.0;python_version>='3.10'",