From 4ea8ac80a8e4ffc01e300bc1b17e9d6d0963ce5c Mon Sep 17 00:00:00 2001 From: wiredfool Date: Tue, 18 Feb 2025 21:51:03 +0000 Subject: [PATCH] Fix the windows test matrix? --- .github/workflows/test-windows.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 75b85e24a..1711276f6 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -37,12 +37,6 @@ jobs: fail-fast: false matrix: python-version: - - "pypy3.11" - env: - TEST_REQUIREMENTS: tests - - "pypy3.10" - env: - TEST_REQUIREMENTS: tests - "3.10" - "3.11" - "3.12" @@ -53,7 +47,9 @@ jobs: include: # Test the oldest Python on 32-bit - { python-version: "3.9", architecture: "x86", os: "windows-2019", env: {TEST_REQUIREMENTS: "tests"} } - + # test the non-pyarrow capable ones + - { python-version: "pypy3.11", env: {TEST_REQUIREMENTS: "tests"} } + - { python-version: "pypy3.10", env: {TEST_REQUIREMENTS: "tests"} } timeout-minutes: 30 name: Python ${{ matrix.python-version }} (${{ matrix.architecture }})