Skip to content
Merged
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 requirements/runtime.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Pillow>=9.4.0
prettytable
pyahocorasick
nltk
numpy==1.26.4
numpy>=1.26.4
Copy link
Contributor

Choose a reason for hiding this comment

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

high

While loosening the version constraint for numpy provides flexibility, using an open-ended >= is risky. The upcoming NumPy 2.0 release contains significant breaking API changes that will likely break this project. It's a safer practice to specify an upper bound to prevent your project from automatically installing incompatible major versions. This will ensure stability while still allowing for patch and minor updates.

numpy>=1.26.4, <2.0

pydantic
requests
textstat
Expand Down