mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-28 10:56:18 +03:00
Added custom before_install to temporarily pin wheel to 0.31.1
This commit is contained in:
parent
ef47f46ed4
commit
80be691d23
13
config.sh
13
config.sh
|
@ -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
|
Loading…
Reference in New Issue
Block a user