upgrade dependencies#91
Merged
Merged
Conversation
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.
Problem: The workflow failed with resolution-too-deep error when trying to install pr-arena==0.2.9 due to conflicting dependency constraints between firebase-admin 7.x, openai 2.x,
and openhands-ai 0.40.0.
Solution: Updated dependency constraints to allow compatible version ranges:
Problem: Bare except: clause at line 186 violated ruff's E722 rule.
Solution: Changed except: to except Exception: to explicitly catch exceptions.
Problem: Workflow installs from PyPI (pr-arena==0.2.9) which still has the old dependency constraints.
Solution: Changed installation command from:
pip install pr-arena==0.2.9
to:
pip install git+https://github.com/neulab/pr-arena.git@beta-test
This allows the workflow to use the fixed dependencies from the beta-test branch without requiring a new PyPI release.
Updated poetry.lock to reflect the new dependency constraints and ensure reproducible builds.
Verification: