1From b3eabd314f050a7491e82bc1560e8d8633569a06 Mon Sep 17 00:00:00 2001
2From: Zhong Jianxin <azuwis@gmail.com>
3Date: Fri, 24 Feb 2023 11:03:41 +0800
4Subject: [PATCH] Fix build on linux arm64
5
6---
7 setup.py | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10diff --git a/setup.py b/setup.py
11index ef99bcc..81c2dcb 100644
12--- a/setup.py
13+++ b/setup.py
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)
20 else:
21 pythons = 'py2.py3'
22 oses = 'any'
23--
242.39.1
25