From 0a8071d1b04c8e45b2465d05866994ec2df8b1f8 Mon Sep 17 00:00:00 2001 From: Bastian Bechtold Date: Fri, 24 Mar 2023 09:30:46 +0100 Subject: [PATCH] updates _soundfile_data to include glibc 2.17 libsndfile for Linux --- _soundfile_data | 2 +- setup.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/_soundfile_data b/_soundfile_data index d9887ef..f1655ba 160000 --- a/_soundfile_data +++ b/_soundfile_data @@ -1 +1 @@ -Subproject commit d9887ef926bb11cf1a2526be4ab6f9dc690234c0 +Subproject commit f1655ba375f306c4b3b179e1fb603d71b50ce179 diff --git a/setup.py b/setup.py index 81c2dcb..9cdcf42 100644 --- a/setup.py +++ b/setup.py @@ -78,9 +78,8 @@ def get_tag(self): else: oses = 'win_amd64' elif platform == 'linux': - # the oldest mainline github runner available is ubuntu 20.04, - # which runs glibc 2.31: - oses = 'manylinux_2_31_{}'.format(architecture0) + # using the centos:7 runner with glibc2.17: + oses = 'manylinux_2_17_{}'.format(architecture0) else: pythons = 'py2.py3' oses = 'any'