-
Notifications
You must be signed in to change notification settings - Fork 50
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
tensorflow should be a main dependency (instead of a dev dependency) #261
Comments
This is a known issue, and stems from a limitation of how TensorFlow packages itself. The TLDR is that there are other versions of tensor flow like |
Ah, I see. I think option 1 here is a bit cleaner, but makes sense to go either way to solve the problem. No worries if you just want to close this, I should've read the readme closer. Thanks for the cool package :) |
Yeah I guess we can make TensorFlow an optional dependency and the update everywhere in the documentation to use |
I see. What do you think of adding both?
? |
I am trying to use
scikeras
in a poetry based project. I ranwhich worked. At runtime, I got an error saying that tensorflow 2.7.0 was needed. This should've been caught at the time I added the package during poetry. The only reason, from my understanding that it wasn't was because tensorflow is a dev dependency, rather than a real dependency, for poetry.
The text was updated successfully, but these errors were encountered: