fix: bump Pillow to 12.3.0 in osworld_agent - #2751
Merged
Merged
Conversation
Pillow was pinned to ~=11.0.0 in osworld_agent while every other agent/resource server in the repo already pins ==12.3.0. Signed-off-by: Kajal Jain <kajalj@nvidia.com>
osworld==0.1.0 pins pillow>=11.0.0,<11.1.dev0, making the plain requirements.txt bump unsatisfiable. Add an overrides.txt entry to bypass the stale transitive pin, matching the pattern used elsewhere in the repo (e.g. stirrup_agent). Signed-off-by: Kajal Jain <kajalj@nvidia.com>
Contributor
Author
|
/ok to test e25f13e |
chtruong814
approved these changes
Aug 25, 2026
Contributor
Author
|
/ok to test 641136f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
~=11.0.0to==12.3.0inresponses_api_agents/osworld_agent/requirements.txt, matching the pin already used across every other agent/resource server in the repo.osworld==0.1.0transitively pinspillow>=11.0.0,<11.1.dev0, which made the plain version bump unresolvable. Added anoverrides.txtentry to bypass that stale pin, following the same pattern used instirrup_agent.Test plan
uv pip install -r requirements.txt --override overrides.txtresolves cleanly and installspillow==12.3.0(verified locally)uv lock --checkpasses (unaffected — this server sits outside the uv workspace)