evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / soundfile / 0001-Fix-build-on-linux-arm64.patch
blobfa656fd2845edc4e28f21b916d332058b329da49
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
6 ---
7 setup.py | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
10 diff --git a/setup.py b/setup.py
11 index 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 --
24 2.39.1