Skip to content

Commit

Permalink
Also skip 3.8 builds on 32 bit platforms
Browse files Browse the repository at this point in the history
In the recently merged Qiskit#12910 the minimum Python version was raised to
3.9. As part of this the cibuildwheel config was updated to skip 38
uilds since they wont work anymore. However that PR missed that there
was an additional skip config in for the 32 bit builds in the job
definition. This commit adds the missing skip so the 32bit wheel builds
will work as well.
  • Loading branch information
mtreinish committed Sep 11, 2024
1 parent 5551877 commit 89e1d57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: 'pp* cp36-* cp37-* *musllinux* *amd64 *x86_64'
CIBW_SKIP: 'pp* cp36-* cp37-* cp38-* *musllinux* *amd64 *x86_64'
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl
Expand Down

0 comments on commit 89e1d57

Please sign in to comment.