From 182ac825dec5ea650a768cb76b0d709a4d579a1c Mon Sep 17 00:00:00 2001 From: jodhus Date: Wed, 4 Sep 2024 20:57:19 -0400 Subject: [PATCH] Trying to debug musllinux image not detecting the libsndfile library. --- pyproject.toml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f72c0bf..c3ac45a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,5 @@ [build-system] -requires = [ - 'wheel', - 'setuptools', - 'Cython', - 'setuptools_scm[toml]', -] +requires = ['wheel', 'setuptools', 'Cython', 'setuptools_scm[toml]'] build-backend = 'setuptools.build_meta' [tool.cibuildwheel] @@ -25,7 +20,7 @@ before-test = "brew install libsndfile" [[tool.cibuildwheel.overrides]] select = '*-musllinux*' -before-test = "apk add libsndfile" +before-test = ['apk add libsndfile', 'find / | grep libsndfile'] [tool.pytest.ini_options] minversion = '6.0'