1 From b3eabd314f050a7491e82bc1560e8d8633569a06 Mon Sep 17 00:00:00 2001
2 From: Zhong Jianxin <azuwis@gmail.com>
3 Date: Fri, 24 Feb 2023 11:03:41 +0800
4 Subject: [PATCH] Fix build on linux arm64
8 1 file changed, 1 insertion(+), 1 deletion(-)
10 diff --git a/setup.py b/setup.py
11 index ef99bcc..81c2dcb 100644
14 @@ -80,7 +80,7 @@ else:
15 elif platform == 'linux':
16 # the oldest mainline github runner available is ubuntu 20.04,
17 # which runs glibc 2.31:
18 - oses = 'manylinux_2_31_x86_64'
19 + oses = 'manylinux_2_31_{}'.format(architecture0)