r9y9 / nnmnkwii

Library to build speech synthesis systems designed for easy and fast prototyping.

Home Page:https://r9y9.github.io/nnmnkwii/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Python 3.10 incompatibility. Solution - remove requirement of numpy<v1.20.0

Martin-Laclaustra opened this issue · comments

TL;DR;

"numpy<v1.20.0",

should be changed to just "numpy",
thanks to a recent update in https://github.com/r9y9/pysptk that allows it.
That solves incompatibility with Python 3.10.

Long explanation

This module suffered the same problem as pysptk: r9y9/pysptk#91
It was requesting a former version of numpy (19), which happens to be incompatible with Python 3.10. Thus, neither of these modules could be installed.
The requirement in this module was forced by its dependency on pysptk.
Aug, 7th commit released the requirement from pysptk, r9y9/pysptk@93896a9.
Thus, this module can also be fixed now.

Thank you for all your generously shared work!