Skip to content

Commit

Permalink
Remove manylinux1 wheels only on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Legrandin committed Nov 19, 2022
1 parent 60898fe commit 3d065d6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@ jobs:
'python -m Crypto.SelfTest --skip-slow-tests' }}"

- name: Delete manylinux1 wheels
if: runner.os == 'Linux'
run: |
rm wheelhouse/*-manylinux1_i686.whl
rm wheelhouse/*-manylinux1_x86_64.whl
rm -f wheelhouse/*-manylinux1_i686.whl
rm -f wheelhouse/*-manylinux1_x86_64.whl
- uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -159,9 +160,10 @@ jobs:
'python -m Crypto.SelfTest --skip-slow-tests' }}"

- name: Delete manylinux1 wheels
if: runner.os == 'Linux'
run: |
rm wheelhouse/*-manylinux1_i686.whl
rm wheelhouse/*-manylinux1_x86_64.whl
rm -f wheelhouse/*-manylinux1_i686.whl
rm -f wheelhouse/*-manylinux1_x86_64.whl
- uses: actions/upload-artifact@v3
with:
Expand Down
5 changes: 5 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ Changelog
3.16.0 (xx xx 2022)
++++++++++++++++++++++++++

New features
------------
* Build wheels for musl Linux. Thanks to Ben Raz.

Resolved issues
---------------
* GH#639: ARC4 now also works with 'keys' as short as 8 bits.
* GH#669: fix segfaults when running in a manylinux2010 i686 image.

3.15.0 (22 June 2022)
++++++++++++++++++++++++++
Expand Down

0 comments on commit 3d065d6

Please sign in to comment.