diff options
Diffstat (limited to '.ci/build-manylinux-wheels.sh')
-rwxr-xr-x | .ci/build-manylinux-wheels.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/build-manylinux-wheels.sh b/.ci/build-manylinux-wheels.sh index 6d78104..0cab659 100755 --- a/.ci/build-manylinux-wheels.sh +++ b/.ci/build-manylinux-wheels.sh @@ -8,7 +8,7 @@ PIP="/opt/python/${PYTHON_VERSION}/bin/pip" ${PIP} install --upgrade pip wheel ${PIP} install --upgrade setuptools ${PIP} install -r /io/.ci/requirements.txt -make -C /io/ PYTHON="${PYTHON}" +rm -rf /io/build ${PIP} wheel /io/ -w /io/dist/ # Bundle external shared libraries into the wheels. @@ -25,5 +25,5 @@ PYTHON="/opt/python/${PYTHON_VERSION}/bin/python" PIP="/opt/python/${PYTHON_VERSION}/bin/pip" ${PIP} install ${PYMODULE} --no-index -f file:///io/dist rm -rf /io/tests/__pycache__ -make -C /io/ PYTHON="${PYTHON}" testinstalled +"${PYTHON}" /io/tests/__init__.py rm -rf /io/tests/__pycache__ |