File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 344344 - Improves precompiled library location, especially with py2app or cx-freeze.
345345 - Now provide binary wheels for Linux x86_64
346346 - 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 88For further information, see https://python-soundfile.readthedocs.io/.
99
1010"""
11- __version__ = "0.12.0 "
11+ __version__ = "0.12.1 "
1212
1313import os as _os
1414import sys as _sys
176176 _explicit_libname = 'libsndfile.dylib'
177177 elif _sys .platform == 'win32' :
178178 _explicit_libname = 'libsndfile.dll'
179- elif _sys .plaform == 'linux' :
179+ elif _sys .platform == 'linux' :
180180 _explicit_libname = 'libsndfile.so'
181181 else :
182182 raise
You can’t perform that action at this time.
0 commit comments