-
Notifications
You must be signed in to change notification settings - Fork 0
fix: dependencies bumped #264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -147,6 +147,7 @@ lint = [ | |||||||||||||
| ] | ||||||||||||||
| load = [ | ||||||||||||||
| "matplotlib==3.10.8", | ||||||||||||||
| "Pillow>=12.1.1", | ||||||||||||||
| ] | ||||||||||||||
|
Comment on lines
149
to
151
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify whether Pillow is imported in runtime packages (app/workers) vs. load-only scripts.
rg -nP --type=py -C2 '\b(from\s+PIL\s+import|import\s+PIL\b)' app workers 2>/dev/null || echo "No matches found in app/workers"Repository: HardMax71/Integr8sCode Length of output: 97 🏁 Script executed: cat backend/pyproject.tomlRepository: HardMax71/Integr8sCode Length of output: 6270 Pin Pillow to exact version for consistency with project's strict dependency pinning strategy. The Pinning adjustment load = [
"matplotlib==3.10.8",
- "Pillow>=12.1.1",
+ "Pillow==12.1.1",
]📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
| dev = [ | ||||||||||||||
| { include-group = "test" }, | ||||||||||||||
|
|
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In
[dependency-groups].load, the dependency name is capitalized as"Pillow>=12.1.1", while the rest of this file (and the generateduv.lock) uses normalized/lowercase names (e.g.,matplotlib,pillow). Even though pip is case-insensitive, keeping the canonical lowercase name avoids churn in lockfiles and tooling that normalizes names. Suggest changing this topillow>=12.1.1for consistency.