python: use locally installed auditwheel

`auditwheel` is a part of manylinux images,
there is no need to create a virtual environment
and install it again.
This commit is contained in:
link2xt
2023-03-18 20:57:09 +00:00
parent fcc1fe73be
commit 635c73ffc6
3 changed files with 3 additions and 32 deletions

View File

@@ -31,7 +31,9 @@ unset DCC_NEW_TMP_EMAIL
# Try to build wheels for a range of interpreters, but don't fail if they are not available.
# E.g. musllinux_1_1 does not have PyPy interpreters as of 2022-07-10
tox --workdir "$TOXWORKDIR" -e py37,py38,py39,py310,py311,pypy37,pypy38,pypy39,auditwheels --skip-missing-interpreters true
tox --workdir "$TOXWORKDIR" -e py37,py38,py39,py310,py311,pypy37,pypy38,pypy39 --skip-missing-interpreters true
auditwheel repair "$TOXWORKDIR/wheelhouse/deltachat*" -w "$TOXWORKDIR/wheelhouse"
echo -----------------------