Hack to force detect libsndfile.
This commit is contained in:
parent
182ac825de
commit
9048ddf99d
1 changed files with 5 additions and 1 deletions
|
@ -20,7 +20,11 @@ before-test = "brew install libsndfile"
|
||||||
|
|
||||||
[[tool.cibuildwheel.overrides]]
|
[[tool.cibuildwheel.overrides]]
|
||||||
select = '*-musllinux*'
|
select = '*-musllinux*'
|
||||||
before-test = ['apk add libsndfile', 'find / | grep libsndfile']
|
before-test = [
|
||||||
|
'apk add libsndfile',
|
||||||
|
'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',
|
||||||
|
]
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
minversion = '6.0'
|
minversion = '6.0'
|
||||||
|
|
Loading…
Reference in a new issue