From d53ad27accf813b0bd990fd28bf6df5ca0631eb8 Mon Sep 17 00:00:00 2001 From: Wise Man <137760120+Greenie0701@users.noreply.github.com> Date: Fri, 12 Sep 2025 19:30:56 +0530 Subject: [PATCH] Enable test suite for Windows on ARM --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6089479..c0c640c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,11 @@ jobs: matrix: os: ["ubuntu-latest", "windows-latest", "macos-latest"] py: ["3.14-dev", "3.13", "3.12", "3.11", "3.10", "3.9"] - + exclude: + - os: window-11-arm + py: "3.9" + - os: window-11-arm + py: "3.10" runs-on: ${{ matrix.os }} name: Run test with Python ${{ matrix.py }} on ${{ matrix.os }}