File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,10 @@ clean_wheels:
54
54
rm -rf wheelhouse/
55
55
56
56
cp_wheels_x64 :
57
- cp wheelhouse/* manylinux1_x86_64.whl dist/
57
+ mv wheelhouse/* manylinux1_x86_64.whl dist/
58
58
59
59
cp_wheels_i686 :
60
- cp wheelhouse/* manylinux1_i686.whl dist/
60
+ mv wheelhouse/* manylinux1_i686.whl dist/
61
61
62
62
upload_wheels_x64 :
63
63
@for f in wheelhouse/* manylinux1_x86_64.whl ; do \
Original file line number Diff line number Diff line change @@ -17,15 +17,14 @@ for PYTHON in ${PYTHON_VERSIONS}; do
17
17
. /opt/python/venv-${PYTHON} /bin/activate
18
18
${POETRY_VENV} /bin/poetry install -v
19
19
${POETRY_VENV} /bin/poetry build -v
20
- mv dist/* -${RELEASE} -* .whl wheelhouse/
20
+ mv dist/* -${RELEASE} -* -linux_ * .whl wheelhouse/
21
21
deactivate
22
22
cd -
23
23
done
24
24
25
25
echo " Bundle external shared libraries into the wheels"
26
- for whl in /io/wheelhouse/pendulum-${RELEASE} -* .whl; do
27
- auditwheel repair $whl -w /io/wheelhouse/
28
- rm -f $whl
26
+ for whl in /io/wheelhouse/pendulum-${RELEASE} -* -linux_* .whl; do
27
+ auditwheel repair " $whl " -w /io/wheelhouse/
29
28
done
30
29
31
30
echo " Install packages and test"
You can’t perform that action at this time.
0 commit comments