Added custom before_install to temporarily pin wheel to 0.31.1

This commit is contained in:
Andrew Murray 2018-09-30 22:28:07 +10:00
parent ef47f46ed4
commit 80be691d23

View File

@ -69,3 +69,16 @@ function run_tests {
fi
return $ret
}
if [ -n "$IS_OSX" ]; then
function before_install {
# Custom before_install to temporarily pin wheel to 0.31.1
brew cask uninstall oclint || true
export CC=clang
export CXX=clang++
get_macpython_environment $MB_PYTHON_VERSION venv
source venv/bin/activate
pip install --upgrade pip
pip install wheel==0.31.1
}
fi