[Bug] AttributeError: module 'scipy.signal' has no attribute 'gaussian'
Davilarek opened this issue · 2 comments
Davilarek commented
Describe the bug
Fresh install of basic-pitch
inside a venv throws error on any sound file provided.
Error message: AttributeError: module 'scipy.signal' has no attribute 'gaussian'
To Reproduce
Steps to reproduce the behavior:
- Make a venv and get into it
- Install
basic-pitch
- Execute
basic-pitch <output dir> <input file>
- Wait some seconds
- See error
Expected behavior
For basic pitch to work
Desktop (please complete the following information):
- OS: Arch Linux
- Version: 0.3.0
Additional context
Here's log:
TeeJayBaker commented
Downgrading scipy from 1.13 to 1.12 will fix the issue temporarily
scipy.signal.gaussian has been replaced with scipy.signal.windows.gaussian
drubinstein commented
Fixed in the 0.3.1 release