Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -344,3 +344,9 @@ News
- Improves precompiled library location, especially with py2app or cx-freeze.
- Now provide binary wheels for Linux x86_64
- Now prefers packaged libsndfile over system-installed libsndfile

2023-02-15 V0.12.1 Bastian Bechtold
Thank you, funnypig, for the bug report

- Fixed typo on library location detection if no packaged lib and
no system lib was found
4 changes: 2 additions & 2 deletions soundfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
For further information, see https://python-soundfile.readthedocs.io/.

"""
__version__ = "0.12.0"
__version__ = "0.12.1"

import os as _os
import sys as _sys
Expand Down Expand Up @@ -176,7 +176,7 @@
_explicit_libname = 'libsndfile.dylib'
elif _sys.platform == 'win32':
_explicit_libname = 'libsndfile.dll'
elif _sys.plaform == 'linux':
elif _sys.platform == 'linux':
_explicit_libname = 'libsndfile.so'
else:
raise
Expand Down