Skip to content

Commit

Permalink
Build: Include old Py3.6 manylinux1 wheels in build.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Apr 3, 2024
1 parent e6ea1e0 commit 8509d4f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/wheels.yml
Expand Up @@ -137,6 +137,16 @@ jobs:
with:
only: ${{ matrix.only }}

- name: Build old Linux wheels
# also build wheels with the most recent manylinux images and gcc
if: contains(matrix.only, '-manylinux-') && startsWith(matrix.only, 'cp36-') && (contains(matrix.only, 'i686') || contains(matrix.only, 'x86_64'))
uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_MANYLINUX_i686_IMAGE: manylinux1
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
with:
only: ${{ matrix.only }}

- name: Build faster Linux wheels
# also build wheels with the most recent manylinux images and gcc
if: runner.os == 'Linux' && !contains(matrix.only, 'i686')
Expand Down

0 comments on commit 8509d4f

Please sign in to comment.