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:
5454 rm -rf wheelhouse/
5555
5656cp_wheels_x64 :
57- cp wheelhouse/* manylinux1_x86_64.whl dist/
57+ mv wheelhouse/* manylinux1_x86_64.whl dist/
5858
5959cp_wheels_i686 :
60- cp wheelhouse/* manylinux1_i686.whl dist/
60+ mv wheelhouse/* manylinux1_i686.whl dist/
6161
6262upload_wheels_x64 :
6363 @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
1717 . /opt/python/venv-${PYTHON} /bin/activate
1818 ${POETRY_VENV} /bin/poetry install -v
1919 ${POETRY_VENV} /bin/poetry build -v
20- mv dist/* -${RELEASE} -* .whl wheelhouse/
20+ mv dist/* -${RELEASE} -* -linux_ * .whl wheelhouse/
2121 deactivate
2222 cd -
2323done
2424
2525echo " 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/
2928done
3029
3130echo " Install packages and test"
You can’t perform that action at this time.
0 commit comments