support manylinux1
This commit is contained in:
parent
abfedb08e4
commit
02715bb643
2 changed files with 15 additions and 0 deletions
4
Makefile
4
Makefile
|
@ -16,3 +16,7 @@ twine:
|
||||||
|
|
||||||
install: clean
|
install: clean
|
||||||
python setup.py install
|
python setup.py install
|
||||||
|
|
||||||
|
build-manylinux1-wheel:
|
||||||
|
docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_i686 bash dockerfiles/buildwheel.sh
|
||||||
|
docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_x86_64 bash dockerfiles/buildwheel.sh
|
||||||
|
|
11
dockerfiles/buildwheel.sh
Executable file
11
dockerfiles/buildwheel.sh
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -e -x
|
||||||
|
|
||||||
|
ARCH=`uname -p`
|
||||||
|
echo "arch=$ARCH"
|
||||||
|
|
||||||
|
for V in cp35-cp35m cp34-cp34m cp27-cp27m cp27-cp27mu; do
|
||||||
|
PYBIN=/opt/python/$V/bin
|
||||||
|
rm -rf build/ # Avoid lib build by narrow Python is used by wide python
|
||||||
|
$PYBIN/python setup.py bdist_wheel -p manylinux1_${ARCH}
|
||||||
|
done
|
Loading…
Reference in a new issue