File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 344
344
- Improves precompiled library location, especially with py2app or cx-freeze.
345
345
- Now provide binary wheels for Linux x86_64
346
346
- Now prefers packaged libsndfile over system-installed libsndfile
347
+
348
+ 2023-02-15 V0.12.1 Bastian Bechtold
349
+ Thank you, funnypig, for the bug report
350
+
351
+ - Fixed typo on library location detection if no packaged lib and
352
+ no system lib was found
Original file line number Diff line number Diff line change 8
8
For further information, see https://python-soundfile.readthedocs.io/.
9
9
10
10
"""
11
- __version__ = "0.12.0 "
11
+ __version__ = "0.12.1 "
12
12
13
13
import os as _os
14
14
import sys as _sys
176
176
_explicit_libname = 'libsndfile.dylib'
177
177
elif _sys .platform == 'win32' :
178
178
_explicit_libname = 'libsndfile.dll'
179
- elif _sys .plaform == 'linux' :
179
+ elif _sys .platform == 'linux' :
180
180
_explicit_libname = 'libsndfile.so'
181
181
else :
182
182
raise
You can’t perform that action at this time.
0 commit comments