Skip to content

Commit 6ec5d29

Browse files
committed
Modify build scripts for arm
1 parent a54de5f commit 6ec5d29

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
22
# Minimum requirements for the build system to execute.
3-
requires = ["setuptools", "wheel", 'numpy', 'Cython', 'pybind11'] # PEP 508 specifications.
3+
requires = ["setuptools", "wheel", 'Cython', 'pybind11'] # PEP 508 specifications.

scripts/run-build-native.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#!/usr/bin/bash
2-
DOCKER_IMAGE=quay.io/pypa/manylinux2014_x86_64
3-
PLAT=manylinux2014_x86_64
4-
docker pull $DOCKER_IMAGE
1+
#!/bin/bash
2+
3+
DOCKER_IMAGE=quay.io/pypa/manylinux2014_aarch64
4+
PLAT=manylinux2014_aarch64
5+
docker pull ${DOCKER_IMAGE}
56
docker run --rm -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/scripts/build-wheels-pypi.sh
67
ls wheelhouse/

0 commit comments

Comments
 (0)