Added missing azure dependency#1153
Conversation
|
No actionable comments were generated in the recent review. 🎉 WalkthroughUpdated pyproject.toml: the Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 3 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
⚔️ Resolve merge conflicts (beta)
Tip Issue Planner is now in beta. Read the docs and try it out! Share your feedback on Discord. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@test.containerfile`:
- Around line 20-21: Remove the ad-hoc `RUN uv add azure-identity` from the
container build because it mutates pyproject.toml/uv.lock at image build time
and breaks reproducibility; instead add `azure-identity` to the appropriate
dependency group in pyproject.toml (likely the llslibdev/dev group), regenerate
and commit the updated uv.lock, and rely on the existing `RUN uv sync --locked
--no-install-project --group llslibdev` to install it reproducibly (also prefer
using `uv run` for runtime commands and `uv sync --group dev --group llslibdev`
where relevant).
520d79e to
80b8b0e
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@pyproject.toml`:
- Around line 192-193: Add a minimum version constraint to the azure-identity
dependency entries: replace the bare "azure-identity" tokens in both occurrences
(the one in the extras list and the one in the [project] dependencies section)
with a pinned minimum version such as "azure-identity>=1.25.2" so the project
consistently requires at least that stable release.
tisnik
left a comment
There was a problem hiding this comment.
coderabbit is right, please put a minimum version there
80b8b0e to
49155bc
Compare
Description
Adding the missing Azure dependency from the llama-stack image
Type of change
Tools used to create PR
Identify any AI code assistants used in this PR (for transparency and review context)
Related Tickets & Documents
Checklist before requesting a review
Testing
Summary by CodeRabbit