MTG / sms-tools

Sound analysis/synthesis tools for music applications
https://www.upf.edu/web/mtg/sms-tools
GNU Affero General Public License v3.0
1.63k stars 751 forks source link

Workaround for the np.float error #141

Closed marcoslhc closed 2 days ago

marcoslhc commented 1 year ago

in v1.20 numpy deprecated np.float in favor of the native python float function. In v1.24 they removed support altogether and trying to call np.float raises an Exception error

This PR creates a lockfile, locking the version of numpy to any version under v1.24 as a temporary fix while I workout where in np.float in use and change it to float

also adds documentation about pipenv usage