Skip to content
This repository was archived by the owner on Jun 25, 2026. It is now read-only.
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
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"openai>=1.93.0",
"pillow>=8,<=11.1",
"pillow>=8",

Copilot AI Mar 9, 2026

Copy link

Choose a reason for hiding this comment

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

pillow>=8 is too permissive for the current codebase: multiple modules call Image.Resampling.LANCZOS, which is not available in older Pillow releases. Please raise the lower bound to a version that guarantees Image.Resampling support (and ideally align it with requirements.txt, which already requires pillow>=11.1.0).

Suggested change
"pillow>=8",
"pillow>=11.1.0",

Copilot uses AI. Check for mistakes.
"pydantic>=2.0",
"selenium>=4.28.1",

Copilot AI Mar 9, 2026

Copy link

Choose a reason for hiding this comment

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

transformers/vllm were removed from pyproject.toml, but the committed uv.lock still contains locked entries/specifiers for both. Regenerate/update uv.lock so the lockfile reflects the new dependency set and installs remain reproducible.

Suggested change
"selenium>=4.28.1",
"selenium>=4.28.1",
"transformers",
"vllm",

Copilot uses AI. Check for mistakes.
"transformers<4.53.0",
"vllm>=0.9.1",
]
authors = [
{name = "Surfer H Contributors"},
Expand Down
Loading