Skip to content

Commit

Permalink
Build wheel for PyPy3.7, drop PyPy3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Legrandin committed Nov 19, 2022
1 parent 428fd89 commit 60898fe
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
- uses: pypa/cibuildwheel@v2.11.2
name: Build wheels
env:
# cibuildwheel will build wheel once for each CPython platform
# and will test it with all given python versions
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-* cp310-*"
# cibuildwheel will build wheel once and test it for each CPython version
# and for PyPy 3.6.
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-* cp310-* pp37-*"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2010"
CIBW_MANYLINUX_I686_IMAGE: "manylinux2010"
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: "manylinux2010"
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
- uses: pypa/cibuildwheel@v1.12.0
name: Build wheels
env:
CIBW_BUILD: "cp27-* pp27-* pp36-*"
CIBW_BUILD: "cp27-* pp27-*"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2010"
CIBW_MANYLINUX_I686_IMAGE: "manylinux2010"
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: "manylinux2010"
Expand All @@ -158,6 +158,11 @@ jobs:
'python -m Cryptodome.SelfTest --skip-slow-tests' ||
'python -m Crypto.SelfTest --skip-slow-tests' }}"

- name: Delete manylinux1 wheels
run: |
rm wheelhouse/*-manylinux1_i686.whl
rm wheelhouse/*-manylinux1_x86_64.whl
- uses: actions/upload-artifact@v3
with:
name: wheels
Expand Down

0 comments on commit 60898fe

Please sign in to comment.