From 9b07a8480d43b3f638a28961a02d96c257be3c17 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Sun, 1 Feb 2026 23:25:03 -0800 Subject: [PATCH] Update Windows configuration in release workflow to use PyTorch backend - Changed the backend setting for Windows from "none" to "pytorch" to ensure compatibility with bundled PyTorch CPU providers. - Updated comments for clarity regarding the Windows setup. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 648e1c36..177e684d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -148,11 +148,11 @@ jobs: args: "" python-version: "3.12" backend: "none" - # Windows - No TTS bundled, providers downloaded separately + # Windows - PyTorch CPU bundled (works out of the box) - platform: "windows-latest" args: "" python-version: "3.12" - backend: "none" + backend: "pytorch" runs-on: ${{ matrix.platform }}