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 webui/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
flask==2.3.3
flask-cors==4.0.0
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

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

webui/app.py and webui/run.py import NumPy directly, but webui/requirements.txt no longer lists numpy as an explicit dependency. Even though pandas currently pulls NumPy transitively, this makes the Web UI’s direct dependency set unclear and can break installs that don’t resolve transitive deps. Consider adding numpy back without the incompatible hard pin (or with a lower-bound consistent with pandas’ requirements).

Suggested change
flask-cors==4.0.0
flask-cors==4.0.0
numpy>=1.22.4

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

Good catch. NumPy is a direct dependency because both webui/app.py and webui/run.py import it directly.

I updated webui/requirements.txt to keep NumPy explicit while removing the incompatible hard pin. It now uses a compatible lower bound (numpy>=1.26.0) alongside pandas==2.2.2.

pandas==2.2.2
numpy==1.24.3
numpy>=1.26.0
plotly==5.17.0
torch>=2.1.0
huggingface_hub==0.33.1