-
Notifications
You must be signed in to change notification settings - Fork 32
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
Require numpy<1.19.0 to satisfy requirements of tensorflow #620
Conversation
Signed-off-by: Stefan Weil <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #620 +/- ##
==========================================
- Coverage 84.96% 84.86% -0.11%
==========================================
Files 52 52
Lines 2940 2940
Branches 571 571
==========================================
- Hits 2498 2495 -3
- Misses 332 335 +3
Partials 110 110
Continue to review full report at Codecov.
|
It works, but only for a moment. As we force a reinstall for all pip installations, numpy is soon replaced with a newer version again. So this is not a working fix, sorry. |
@bertsky, what was the reason why Makefile currently uses |
It is a way to allow I know the |
I think the elephant in the room here is still pip being unable to solve conflicting requirements. If core now wants Maybe we can (temporarily) solve this by making |
TF wants <1.19.0. That's why I added that for core here. |
Right, my hypothesis was wrong. It does not happen like that, but because of the other dependencies that pip happens to process after it sees our For example, I saw after ocrd_utils:
But more pressingly, our core install recipe seems to be wrong, because it also brings in @kba this is urgent AFAICT. |
Signed-off-by: Stefan Weil [email protected]