Skip to content

Commit 507883e

Browse files
committed
Try aarch64 build in manylinux script
1 parent 16b6eac commit 507883e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bindings/python/build_wheels.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
from pprint import pprint
1010

1111
def platforms():
12-
ARCHES = ['x86_64', 'i686'] # WIP: 'aarch64', 'armv7l', 'ppc64', 'ppc64le', 's390x'
13-
BASES = ['manylinux2010', 'manylinux_2_24']
12+
ARCHES = ['x86_64', 'i686', 'aarch64'] # WIP: 'armv7l', 'ppc64', 'ppc64le', 's390x'
13+
BASES = ['manylinux2010', 'manylinux_2_28', 'manylinux_2_34']
1414
for base in BASES:
1515
for arch in ARCHES:
1616
if base == 'manylinux2010' and arch not in ['x86_64', 'i686']:

0 commit comments

Comments
 (0)