Merge pull request #1 from radarhere/pin-wheel

Added custom before_install to temporarily pin wheel to 0.31.1
This commit is contained in:
Hugo 2018-09-30 16:26:19 +03:00 committed by GitHub
commit 0a4aef4e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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