Skip to content
Open
Show file tree
Hide file tree
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [{ name = "RC219805" }]
dependencies = [
# Pin numpy <2.3.0 for opencv-python compatibility
# See: https://github.com/opencv/opencv-python/issues/954
"numpy>=1.24,<2.3.0",
"numpy>=1.24,<2.5.0",
"Pillow>=10.0.0,<12",
"scipy>=1.15,<2",
"scikit-learn>=1.0,<2",
Expand Down
2 changes: 1 addition & 1 deletion requirements-lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Does NOT include heavy ML dependencies (torch, transformers, diffusers, realesrgan, etc.)

# Core dependencies that are actually imported in linted files
numpy>=1.24,<2.3.0
numpy>=1.24,<2.5.0
Pillow>=10,<12
PyYAML>=6.0,<7
tqdm>=4.66,<5
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Run `make compile` in this directory to generate pinned base.txt

# Core array and image processing
numpy>=1.24,<2.3.0 # pinned <2.3.0 for opencv compatibility
numpy>=1.24,<2.5.0 # pinned <2.3.0 for opencv compatibility
Pillow>=10.0.0,<13
scipy>=1.15,<2
scikit-learn>=1.8.0,<2 # classical ML (used in core features)
Expand Down
Loading