Skip to content

Commit 3d065d6

Browse files
committed
Remove manylinux1 wheels only on Linux
1 parent 60898fe commit 3d065d6

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/wheels.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,10 @@ jobs:
5555
'python -m Crypto.SelfTest --skip-slow-tests' }}"
5656

5757
- name: Delete manylinux1 wheels
58+
if: runner.os == 'Linux'
5859
run: |
59-
rm wheelhouse/*-manylinux1_i686.whl
60-
rm wheelhouse/*-manylinux1_x86_64.whl
60+
rm -f wheelhouse/*-manylinux1_i686.whl
61+
rm -f wheelhouse/*-manylinux1_x86_64.whl
6162
6263
- uses: actions/upload-artifact@v3
6364
with:
@@ -159,9 +160,10 @@ jobs:
159160
'python -m Crypto.SelfTest --skip-slow-tests' }}"
160161

161162
- name: Delete manylinux1 wheels
163+
if: runner.os == 'Linux'
162164
run: |
163-
rm wheelhouse/*-manylinux1_i686.whl
164-
rm wheelhouse/*-manylinux1_x86_64.whl
165+
rm -f wheelhouse/*-manylinux1_i686.whl
166+
rm -f wheelhouse/*-manylinux1_x86_64.whl
165167
166168
- uses: actions/upload-artifact@v3
167169
with:

Changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@ Changelog
44
3.16.0 (xx xx 2022)
55
++++++++++++++++++++++++++
66

7+
New features
8+
------------
9+
* Build wheels for musl Linux. Thanks to Ben Raz.
10+
711
Resolved issues
812
---------------
913
* GH#639: ARC4 now also works with 'keys' as short as 8 bits.
14+
* GH#669: fix segfaults when running in a manylinux2010 i686 image.
1015

1116
3.15.0 (22 June 2022)
1217
++++++++++++++++++++++++++

0 commit comments

Comments
 (0)