summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--docker/buildwheel.sh2
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6f29aed..b50fa80 100644
--- a/Makefile
+++ b/Makefile
@@ -36,8 +36,8 @@ update-docker:
.PHONY: linux-wheel
linux-wheel:
- docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux1_i686 bash docker/buildwheel.sh
- docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux1_x86_64 bash docker/buildwheel.sh
+ docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_i686 bash docker/buildwheel.sh
+ docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2014_x86_64 bash docker/buildwheel.sh
.PHONY: linux-arm64-wheel
linux-arm64-wheel:
diff --git a/docker/buildwheel.sh b/docker/buildwheel.sh
index 89a2570..87f257d 100644
--- a/docker/buildwheel.sh
+++ b/docker/buildwheel.sh
@@ -7,6 +7,8 @@ set -e -x
ARCH=`uname -p`
echo "arch=$ARCH"
+ls /opt/python
+
for V in "${PYTHON_VERSIONS[@]}"; do
PYBIN=/opt/python/$V/bin
rm -rf build/ # Avoid lib build by narrow Python is used by wide python