Skip to content

Commit

Permalink
Modify build scripts for arm
Browse files Browse the repository at this point in the history
  • Loading branch information
fakufaku committed Apr 8, 2021
1 parent a54de5f commit 6ec5d29
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", 'numpy', 'Cython', 'pybind11'] # PEP 508 specifications.
requires = ["setuptools", "wheel", 'Cython', 'pybind11'] # PEP 508 specifications.
9 changes: 5 additions & 4 deletions scripts/run-build-native.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/bash
DOCKER_IMAGE=quay.io/pypa/manylinux2014_x86_64
PLAT=manylinux2014_x86_64
docker pull $DOCKER_IMAGE
#!/bin/bash

DOCKER_IMAGE=quay.io/pypa/manylinux2014_aarch64
PLAT=manylinux2014_aarch64
docker pull ${DOCKER_IMAGE}
docker run --rm -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/scripts/build-wheels-pypi.sh
ls wheelhouse/

0 comments on commit 6ec5d29

Please sign in to comment.