Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manual-testing-sandbox/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spacy==3.1.2

# Deep Learning
torch==2.6.0
keras==2.6.0
keras==3.12.2

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0: TensorFlow 2.6.0 is incompatible with Keras 3.12.2. Keras 3.x requires TensorFlow >= 2.16.1; TensorFlow 2.6.0 bundles Keras 2.x and only supports Python 3.6–3.9, while Keras 3.12.2 requires Python >= 3.11. This will cause resolution or runtime failures.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At manual-testing-sandbox/requirements.txt, line 29:

<comment>TensorFlow 2.6.0 is incompatible with Keras 3.12.2. Keras 3.x requires TensorFlow >= 2.16.1; TensorFlow 2.6.0 bundles Keras 2.x and only supports Python 3.6–3.9, while Keras 3.12.2 requires Python >= 3.11. This will cause resolution or runtime failures.</comment>

<file context>
@@ -26,7 +26,7 @@ spacy==3.1.2
 # Deep Learning
 torch==2.6.0
-keras==2.6.0
+keras==3.12.2
 
 # Image processing
</file context>


# Image processing
pillow==8.3.2
Expand Down
Loading