Skip to content

Commit

Permalink
Merge pull request #370 from bastibe/fix-typo
Browse files Browse the repository at this point in the history
V0.12.1
  • Loading branch information
bastibe authored Feb 15, 2023
2 parents d8e1c00 + ce73030 commit 960d43f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
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

0 comments on commit 960d43f

Please sign in to comment.