8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee82a3 commit e225c61Copy full SHA for e225c61
travis_config.sh
@@ -17,7 +17,11 @@ function bdist_wheel_cmd {
17
CI_BUILD=1 pip wheel --verbose --wheel-dir="$PWD/dist" . $BDIST_PARAMS
18
cp dist/*.whl $abs_wheelhouse
19
if [ -z "$IS_OSX" ]; then
20
- /opt/python/cp37-cp37m/bin/python patch_auditwheel_whitelist.py
+ 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
25
fi
26
if [ -n "$USE_CCACHE" -a -z "$BREW_BOOTSTRAP_MODE" ]; then ccache -s; fi
27
}
0 commit comments