From b7ae190b8a9364032c889349a7e4381bc0a053b9 Mon Sep 17 00:00:00 2001 From: Klaus Rettinghaus Date: Sun, 21 Jan 2024 17:13:43 +0100 Subject: [PATCH] keep python archs --- .github/workflows/python-ci-wheel.yml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/python-ci-wheel.yml b/.github/workflows/python-ci-wheel.yml index 8f362e53f29..215a7c9bb1f 100644 --- a/.github/workflows/python-ci-wheel.yml +++ b/.github/workflows/python-ci-wheel.yml @@ -23,31 +23,34 @@ jobs: fail-fast: false # Build the wheels for Linux, Windows and macOS matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + architecture: [x86, x64] include: - os: macos-latest - archs: x64 + architecture: x64 platform_id: macosx_* - os: windows-latest - archs: x64 + architecture: x64 platform_id: win_amd64 - os: windows-latest - archs: x86 + architecture: x86 platform_id: win32 - os: ubuntu-latest - archs: x64 + architecture: x64 platform_id: manylinux_x86_64 - os: ubuntu-latest - archs: aarch64 + architecture: aarch64 platform_id: manylinux_aarch64 exclude: - os: macos-latest - archs: arm64 + architecture: arm64 - os: macos-latest - archs: x86 + architecture: x86 - os: windows-latest - archs: arm64 + architecture: arm64 - os: ubuntu-latest - archs: x86 + architecture: x86 steps: #===============================================#