From b26c81dbac0e2f64274e1e77df0be06afef4f997 Mon Sep 17 00:00:00 2001 From: Johnny Date: Mon, 29 Dec 2025 17:01:16 +0100 Subject: [PATCH] Update max PyTorch version to 2.10.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3c20c1629..6386a7ba8 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ # Define version constraints TORCH_MIN_VER = '1.6.0' -TORCH_MAX_VER = '2.8.0' # Updated to support newer PyTorch versions +TORCH_MAX_VER = '2.10.0' # Updated to support newer PyTorch versions CYTHON_MIN_VER = '0.29.37' IGNORE_TORCH_VER = os.getenv('IGNORE_TORCH_VER') is not None