mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
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:
commit
0a4aef4e47
13
config.sh
13
config.sh
|
@ -69,3 +69,16 @@ function run_tests {
|
||||||
fi
|
fi
|
||||||
return $ret
|
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