Skip to content

Commit

Permalink
Merge pull request #1 from radarhere/pin-wheel
Browse files Browse the repository at this point in the history
Added custom before_install to temporarily pin wheel to 0.31.1
  • Loading branch information
hugovk committed Sep 30, 2018
2 parents ef47f46 + 80be691 commit 0a4aef4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0a4aef4

Please sign in to comment.