Tensorflow versions
This merge request addresses this issue: #141 (closed)
I have expanded ketos tensorflow compatibility from tensorflow>=2.2,<=2.5
to tensorflow>=2.2,<=2.7
.
All unit tests and docstring examples are passing successfully at my end.
HOWEVER: There is a minor issue affecting installations with tensorflow 2.6. When running pip install tensorflow==2.6
, for some odd reason pip installs keras
v2.7 instead of 2.6. This causes an error when trying to import ketos. The solution is easy, change to the appropriate keras version with pip install keras==2.6
.
QUESTION: How do we handle this issue? Do we merely mention somewhere it in the installation docs?
@bpadovese , your thoughts?