Skip to content
Closed
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.0
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Nov 1, 2025

Choose a reason for hiding this comment

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

Pinning keras==3.12.0 breaks dependency resolution with the existing tensorflow==2.6.0 entry. TensorFlow 2.6.0 requires keras~=2.6, so this upgrade will make pip install -r requirements.txt fail. Upgrade TensorFlow (and related deps) alongside Keras or keep the older compatible Keras version.

Prompt for AI agents
Address the following comment on manual-testing-sandbox/requirements.txt at line 29:

<comment>Pinning keras==3.12.0 breaks dependency resolution with the existing tensorflow==2.6.0 entry. TensorFlow 2.6.0 requires keras~=2.6, so this upgrade will make `pip install -r requirements.txt` fail. Upgrade TensorFlow (and related deps) alongside Keras or keep the older compatible Keras version.</comment>

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


# Image processing
pillow==8.3.2
Expand Down
Loading