diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9bec20e05..0ca2a4df6 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -80,17 +80,17 @@ jobs: fail-fast: false matrix: include: - # - os: macos-11 - # name: mac-cpython - # cibw: - # build: "cp*" + - os: macos-11 + name: mac-cpython + cibw: + build: "cp*" - os: macos-11 name: mac-pypy cibw: build: "pp*" - - os: macos-13 + - os: macos-11 name: mac-arm cibw: arch: universal2 @@ -100,41 +100,41 @@ jobs: cibw: arch: x86_64 build: "*manylinux*" -# -# - name: manylinux-i686 -# cibw: -# arch: i686 -# build: "*manylinux*" -# -# # additional manylinux variants, not specified in pyproject.toml: -# # build with newer 2_28 for cpython >= 3.10, pypy 3.9 -# - name: manylinux-x86_64-2_28 -# cibw: -# arch: x86_64 -# build: "cp31*-manylinux* pp39-manylinux*" -# manylinux_x86_64_image: manylinux_2_28 -# -# - name: musllinux -# cibw: -# build: "*musllinux*" - -# - name: win32 -# os: windows-2019 -# architecture: x86 -# cibw: -# build: "cp*win32" -# -# - os: windows-2019 -# name: win-pypy -# architecture: x64 -# cibw: -# build: "pp*win_amd64" -# -# - os: windows-2019 -# name: win_amd64 -# architecture: x64 -# cibw: -# build: "cp*win_amd64" + + - name: manylinux-i686 + cibw: + arch: i686 + build: "*manylinux*" + + # additional manylinux variants, not specified in pyproject.toml: + # build with newer 2_28 for cpython >= 3.10, pypy 3.9 + - name: manylinux-x86_64-2_28 + cibw: + arch: x86_64 + build: "cp31*-manylinux* pp39-manylinux*" + manylinux_x86_64_image: manylinux_2_28 + + - name: musllinux + cibw: + build: "*musllinux*" + + - name: win32 + os: windows-2019 + architecture: x86 + cibw: + build: "cp*win32" + + - os: windows-2019 + name: win-pypy + architecture: x64 + cibw: + build: "pp*win_amd64" + + - os: windows-2019 + name: win_amd64 + architecture: x64 + cibw: + build: "cp*win_amd64" steps: - uses: actions/checkout@v4