8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff208ad commit a9f4dadCopy full SHA for a9f4dad
Makefile
@@ -20,3 +20,7 @@ python3: cython
20
21
test:
22
py.test test
23
+
24
+build-manylinux1-wheel:
25
+ docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh
26
+ docker run --rm -ti -v `pwd`:/project -w /project quay.io/pypa/manylinux1_x86_64 bash docker/buildwheel.sh
docker/buildwheel.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+set -e -x
3
4
+ARCH=`uname -p`
5
+echo "arch=$ARCH"
6
7
+for V in cp35-cp35m cp34-cp34m cp27-cp27m cp27-cp27mu; do
8
+ PYBIN=/opt/python/$V/bin
9
+ rm -rf build/ # Avoid lib build by narrow Python is used by wide python
10
+ $PYBIN/python setup.py bdist_wheel -p manylinux1_${ARCH}
11
+done
0 commit comments