From d7da2d99463744e05ca348e91c70599067f9f550 Mon Sep 17 00:00:00 2001 From: zhonggang <54022200+zhonggang666@users.noreply.github.com> Date: Thu, 9 Jul 2026 17:27:34 +0800 Subject: [PATCH] fix: correct windows torch marker --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bc0e07139df..efffc8a5ef3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -82,7 +82,7 @@ explicit = true [tool.uv.sources] torch = [ { index = "pytorch", marker = "sys_platform == 'linux'" }, - { index = "pytorch", marker = "sys_platform == 'win'" }, + { index = "pytorch", marker = "sys_platform == 'win32'" }, { index = "macpytorch", marker = "sys_platform == 'darwin'" }, ]