From 5dee4b68705a5f626f46a90750be29c436fceea2 Mon Sep 17 00:00:00 2001 From: Philip Cook Date: Tue, 14 May 2024 14:21:33 -0400 Subject: [PATCH] ENH: Re-enable other pythons --- .github/workflows/wheels.yml | 124 +++++++++++++++++------------------ 1 file changed, 62 insertions(+), 62 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 6e9af6e6..5d2e2a8f 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -19,92 +19,92 @@ jobs: # Need to quote decimal versions as string to avoid the "Norway problem" # Windows 64-bit - # - os: windows-latest - # python: '3.8' - # cibw_python: 38 - # platform_id: win_amd64 - # - os: windows-latest - # python: '3.9' - # cibw_python: 39 - # platform_id: win_amd64 - # - os: windows-latest - # python: '3.10' - # cibw_python: 310 - # platform_id: win_amd64 + - os: windows-latest + python: '3.8' + cibw_python: 38 + platform_id: win_amd64 + - os: windows-latest + python: '3.9' + cibw_python: 39 + platform_id: win_amd64 + - os: windows-latest + python: '3.10' + cibw_python: 310 + platform_id: win_amd64 - os: windows-latest python: '3.11' cibw_python: 311 platform_id: win_amd64 - # - os: windows-latest - # python: '3.12' - # cibw_python: 312 - # platform_id: win_amd64 + - os: windows-latest + python: '3.12' + cibw_python: 312 + platform_id: win_amd64 # Linux 64-bit - # - os: ubuntu-latest - # python: '3.8' - # cibw_python: 38 - # platform_id: manylinux_x86_64 - # - os: ubuntu-latest - # python: '3.9' - # cibw_python: 39 - # platform_id: manylinux_x86_64 - # - os: ubuntu-latest - # python: '3.10' - # cibw_python: 310 - # platform_id: manylinux_x86_64 + - os: ubuntu-latest + python: '3.8' + cibw_python: 38 + platform_id: manylinux_x86_64 + - os: ubuntu-latest + python: '3.9' + cibw_python: 39 + platform_id: manylinux_x86_64 + - os: ubuntu-latest + python: '3.10' + cibw_python: 310 + platform_id: manylinux_x86_64 - os: ubuntu-latest python: '3.11' cibw_python: 311 platform_id: manylinux_x86_64 - # - os: ubuntu-latest - # python: '3.12' - # cibw_python: 312 - # platform_id: manylinux_x86_64 + - os: ubuntu-latest + python: '3.12' + cibw_python: 312 + platform_id: manylinux_x86_64 # macOS on Intel 64-bit - # - os: macos-12 - # python: '3.8' - # cibw_python: 38 - # arch: x86_64 - # platform_id: macosx_x86_64 - # - os: macos-12 - # python: '3.9' - # cibw_python: 39 - # arch: x86_64 - # platform_id: macosx_x86_64 - # - os: macos-12 - # python: '3.10' - # cibw_python: 310 - # arch: x86_64 - # platform_id: macosx_x86_64 + - os: macos-12 + python: '3.8' + cibw_python: 38 + arch: x86_64 + platform_id: macosx_x86_64 + - os: macos-12 + python: '3.9' + cibw_python: 39 + arch: x86_64 + platform_id: macosx_x86_64 + - os: macos-12 + python: '3.10' + cibw_python: 310 + arch: x86_64 + platform_id: macosx_x86_64 - os: macos-12 python: '3.11' cibw_python: 311 arch: x86_64 platform_id: macosx_x86_64 - # - os: macos-12 - # python: '3.12' - # cibw_python: 312 - # arch: x86_64 - # platform_id: macosx_x86_64 + - os: macos-12 + python: '3.12' + cibw_python: 312 + arch: x86_64 + platform_id: macosx_x86_64 # macOS on Apple M1 64-bit, supported for Python 3.10 and later - # - os: macos-14 - # python: '3.10' - # cibw_python: 310 - # arch: arm64 - # platform_id: macosx_arm64 + - os: macos-14 + python: '3.10' + cibw_python: 310 + arch: arm64 + platform_id: macosx_arm64 - os: macos-14 python: '3.11' cibw_python: 311 arch: arm64 platform_id: macosx_arm64 - # - os: macos-14 - # python: '3.12' - # cibw_python: 312 - # arch: arm64 - # platform_id: macosx_arm64 + - os: macos-14 + python: '3.12' + cibw_python: 312 + arch: arm64 + platform_id: macosx_arm64 steps: - uses: actions/checkout@v4