-
Notifications
You must be signed in to change notification settings - Fork 506
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
pot installation fails with numpy < 1.20 #308
Comments
This should be corrected by executing pip install with the following option Python 3.6 support will be dropped in December so i'm all for forcing |
The issue is also showing on google colab. The workarounnd suggested by rémi does not work here. For me, installing pot with |
I'm closing this bug, release 0.8.1 should have solved it (it now works on google collab with |
I think this exact same issue will surface again when built against Due to the lack of an upper bound in Might be a good idea to update What do you think @rflamary? Should I make a separate issue for this? EDIT: I confirmed my suspicion with a numpy engineer, see numpy/numpy#19479 (comment):
|
yes please open a new issue with this discussion. I'm getting tired of those wheels ABI problems but I agree that using oldest-supported-numpy is a solution.On the other hand we need to use it only for building the wheels because I don't want to add another dependency. |
Describe the bug
import ot
fails with afterpip install pot
with numpy<=1.19.5Fixes
Either we re-do the wheels with earlier versions of numpy or we require
numpy >= 1.20
. Since 1.20 however, numpy has dropped support of Python 3.6.The text was updated successfully, but these errors were encountered: