Skip to content

Commit e225c61

Browse files
committed
fix auditwheel patching
1 parent 6ee82a3 commit e225c61

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

travis_config.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ function bdist_wheel_cmd {
1717
CI_BUILD=1 pip wheel --verbose --wheel-dir="$PWD/dist" . $BDIST_PARAMS
1818
cp dist/*.whl $abs_wheelhouse
1919
if [ -z "$IS_OSX" ]; then
20-
/opt/python/cp37-cp37m/bin/python patch_auditwheel_whitelist.py
20+
TOOLS_PATH=/opt/_internal/tools
21+
/opt/python/cp37-cp37m/bin/python -m venv $TOOLS_PATH
22+
source $TOOLS_PATH/bin/activate
23+
python patch_auditwheel_whitelist.py
24+
deactivate
2125
fi
2226
if [ -n "$USE_CCACHE" -a -z "$BREW_BOOTSTRAP_MODE" ]; then ccache -s; fi
2327
}

0 commit comments

Comments
 (0)