We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df652a8 commit 7321fb3Copy full SHA for 7321fb3
1 file changed
travis_config.sh
@@ -19,12 +19,12 @@ function bdist_wheel_cmd {
19
CI_BUILD=1 python${PYTHON_VERSION} setup.py bdist_wheel --py-limited-api=cp37 -v
20
cp dist/*.whl $abs_wheelhouse
21
if [ -z "$IS_OSX" ]; then
22
- # this path can be changed in the latest manylinux image
23
- TOOLS_PATH=/opt/_internal/pipx/venvs/auditwheel
24
- /opt/python/cp39-cp39/bin/python -m venv $TOOLS_PATH
25
- source $TOOLS_PATH/bin/activate
26
- python patch_auditwheel_whitelist.py
27
- deactivate
+ TOOLS_PATH="$HOME/auditwheel_venv"
+ python -m venv "$TOOLS_PATH"
+ source "$TOOLS_PATH/bin/activate"
+ pip install -U pip auditwheel
+ python patch_auditwheel_whitelist.py
+ deactivate
28
fi
29
if [ -n "$USE_CCACHE" -a -z "$BREW_BOOTSTRAP_MODE" ]; then ccache -s; fi
30
}
0 commit comments