Commit c30e3b5f authored by Jason Madden's avatar Jason Madden

Fix the manylinux build script

Exclude 3.3, account for cython being a develop wheel right now.

[skip ci]
parent 1fa92a3e
......@@ -10,12 +10,14 @@ if [ -d /gevent -a -d /opt/python ]; then
yum -y install libffi-devel
cd /gevent
rm -rf wheelhouse
for variant in `ls -d /opt/python/cp{27,3}*`; do
for variant in `ls -d /opt/python/cp{27,34,35,36}*`; do
rm -rf dist build *.egg-info
make clean
$variant/bin/pip install -U cython cffi setuptools greenlet wheel
$variant/bin/pip install -U -r ci-requirements.txt
GEVENT_NO_LIBUV_BUILD=1 PATH=$variant/bin:$PATH $variant/bin/python setup.py bdist_wheel
auditwheel repair dist/*.whl
$variant/bin/pip uninstall -y cython
rm -rf src/cython
done
rm -rf dist build *.egg-info
exit 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment