-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compatibility issue with compiled latest pesq==0.0.4
and numpy>=2.0
#54
Comments
thank you so much for raising this issue. |
You probably don't have to do anything except remove the existing |
You need to build your wheels using numpy 2 (which offers backwards compatibility with numpy 1) instead of building them with numpy 1 (which does not provide forward compatibility with numpy 2) |
Right, except I don't think pesq is uploading wheels, just sdists. So just doing a new without the pin is likely sufficient as a quick fix. |
Does that mean it is planned, or do I need to fork? |
Hi @will-rice , |
Seems that the used imports were specific for
numpy
1.x series and they are not valid for the upcoming 2.x which yields crashing...Possible solutions:
numpy
2.xnumpy<2.0
The text was updated successfully, but these errors were encountered: