From 6f77556f5b57070979ba4a8b8665caafae06b523 Mon Sep 17 00:00:00 2001 From: "Christopher J. Markiewicz" Date: Sun, 8 Dec 2024 12:06:24 -0500 Subject: [PATCH] chore(ci): Restore x86 for Windows, will just drop mpl in tox --- .github/workflows/test.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3599bc2c2..c99b4367b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -114,7 +114,7 @@ jobs: matrix: os: ['ubuntu-latest', 'windows-latest', 'macos-13', 'macos-latest'] python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.13t"] - architecture: ['x64', 'arm64'] + architecture: ['x86', 'x64', 'arm64'] dependencies: ['full', 'pre'] include: # Basic dependencies only @@ -127,15 +127,6 @@ jobs: python-version: "3.9" architecture: 'x64' dependencies: 'min' - # Only numpy of the scipy stack still supports win32 - - os: windows-latest - python-version: "3.9" - architecture: 'x86' - dependencies: 'none' - - os: windows-latest - python-version: "3.13" - architecture: 'x86' - dependencies: 'none' exclude: # Use ubuntu-latest to cover the whole range of Python. For Windows # and OSX, checking oldest and newest should be sufficient. @@ -159,6 +150,13 @@ jobs: python-version: "3.12" ## Unavailable architectures + # x86 is available for Windows + - os: ubuntu-latest + architecture: x86 + - os: macos-latest + architecture: x86 + - os: macos-13 + architecture: x86 # arm64 is available for macos-14+ - os: ubuntu-latest architecture: arm64