From 33a330641f8be39b1125b9631d040d56321d6d30 Mon Sep 17 00:00:00 2001 From: jodhus Date: Fri, 6 Sep 2024 13:35:19 -0400 Subject: [PATCH] Cleanup. Make the libsndfile version less specific. --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 013223e..aa15231 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,9 +16,9 @@ before-test = "yum -y install libsndfile" [tool.cibuildwheel.macos] before-test = "brew install libsndfile" -#[tool.cibuildwheel.windows] -# Will re-enable ARM64 once libebur128 pull request #131 is merged. +# Will re-enable Windows ARM64 once libebur128 pull request #131 is merged. # https://github.com/jiixyj/libebur128/pull/131 +#[tool.cibuildwheel.windows] #archs = ['auto', 'ARM64'] [[tool.cibuildwheel.overrides]] @@ -32,7 +32,7 @@ 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', + 'sed -i "192b1; b ;:1;s/_explicit_libname/\"\/usr\/lib\/libsndfile.so.1\"/g" $VIRTUAL_ENV/lib/python$PYVER/site-packages/soundfile.py', ] [tool.pytest.ini_options]