File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 55
55
'python -m Crypto.SelfTest --skip-slow-tests' }}"
56
56
57
57
- name : Delete manylinux1 wheels
58
+ if : runner.os == 'Linux'
58
59
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
61
62
62
63
- uses : actions/upload-artifact@v3
63
64
with :
@@ -159,9 +160,10 @@ jobs:
159
160
'python -m Crypto.SelfTest --skip-slow-tests' }}"
160
161
161
162
- name : Delete manylinux1 wheels
163
+ if : runner.os == 'Linux'
162
164
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
165
167
166
168
- uses : actions/upload-artifact@v3
167
169
with :
Original file line number Diff line number Diff line change @@ -4,9 +4,14 @@ Changelog
4
4
3.16.0 (xx xx 2022)
5
5
++++++++++++++++++++++++++
6
6
7
+ New features
8
+ ------------
9
+ * Build wheels for musl Linux. Thanks to Ben Raz.
10
+
7
11
Resolved issues
8
12
---------------
9
13
* 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.
10
15
11
16
3.15.0 (22 June 2022)
12
17
++++++++++++++++++++++++++
You can’t perform that action at this time.
0 commit comments