From f89f5a6295fe838917f4a9e8c0aa93bd582634e0 Mon Sep 17 00:00:00 2001 From: jodhus Date: Thu, 5 Sep 2024 07:08:25 -0400 Subject: [PATCH] Helps if I install the python-soundfile module first. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 58e9a0a..9322091 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ before-test = "brew install libsndfile" select = '*-musllinux*' before-test = [ 'apk add libsndfile', + 'pip install soundfile', 'PYVER=`python -c "import sys; print(\".\".join(map(str, sys.version_info[:2])))"`', 'sed -i "192b1; b ;:1;s/_explicit_libname/\"\/usr\/lib\/libsndfile.so.1.0.37\"/g" $VIRTUAL_ENV/lib/python$PYVER/site-packages/soundfile.py', ]