-
Notifications
You must be signed in to change notification settings - Fork 83
Fix requirements.txt conflicts and regenerate poetry.lock to sync with pyproject.toml #122
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
Conversation
…oetry.lock added extra command to installation_guide.md
WalkthroughThe pull request updates the Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Poetry
participant System
User->>Poetry: poetry env use 3.10
User->>Poetry: poetry lock --no-update
Poetry->>System: Generate/refresh poetry.lock without updating dependencies
User->>Poetry: poetry install --with dev
Poetry->>System: Install dependencies as per poetry.lock
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Assessment against linked issues
Assessment against linked issues: Out-of-scope changesNo out-of-scope changes detected. Poem
Note ⚡️ Unit Test Generation is now available in beta!Learn more here, or try it out under "Finishing Touches" below. 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
✨ Finishing Touches🧪 Generate unit tests
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
@smokeyScraper review required |
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.
Actionable comments posted: 1
🧹 Nitpick comments (1)
docs/INSTALL_GUIDE.md (1)
32-37:poetry lock --no-updatemay be redundant / brittle for first-time clonesPoetry automatically creates a lock file on
poetry installwhen none exists. For contributors who clone after the lock was committed, runningpoetry lock --no-updateadds an extra minute with no benefit and will fail if the lock andpyproject.tomldiverge.
Consider moving the command to a “Troubleshooting” section or prefixing with a note:Run this only if you edited pyproject.toml and need to regenerate the lock without refreshing versions.
Small UX win for newcomers.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
poetry.lockis excluded by!**/*.lock
📒 Files selected for processing (2)
backend/requirements.txt(1 hunks)docs/INSTALL_GUIDE.md(1 hunks)
🔇 Additional comments (2)
backend/requirements.txt (2)
126-136: Inconsistent OpenTelemetry versioning – risk of subtle runtime breaks
opentelemetry-api/sdk==1.22.0pairs withopentelemetry-proto==1.22.0, but the file currently allows any<1.31.0. If PyPI happens to resolve to 1.30.x you’ll run an unsupported matrix (API 1.22 ↔ Proto 1.30). Pin proto to the same minor:-opentelemetry-proto<1.31.0 +opentelemetry-proto==1.22.0Same principle applies whenever we curate cross-cutting OTEL deps.
Also applies to: 133-134
181-182: Verifyrequests==2.32.4vs security advisories2.32.4 is only hours old; double-check no CVEs were published post-release before we lock it in.
…rsion conflict with onnxruntime
|
Hey @mithun50, have you tried instantiating the system using these dependencies? |
|
Yes! but the packages in requirement.txt is too old and can't be resolvable.
My Suggestion is the requirements.txt is not used in any installation
process so we can remove this
…On Sun, Aug 10, 2025, 8:14 PM Kartik Bhatt ***@***.***> wrote:
*smokeyScraper* left a comment (AOSSIE-Org/Devr.AI#122)
<#122 (comment)>
Hey @mithun50 <https://github.com/mithun50>, have you tried instantiating
the system using these dependencies?
—
Reply to this email directly, view it on GitHub
<#122 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AXTP5BMUXX5F27KJ3EPYNAD3M5LEFAVCNFSM6AAAAACDH4REPGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTCNZSGY4DENZWHA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
|
Merged!!! Thanks a lot for your contribution :) |
Closes #120
📝 Description
This PR addresses the following issues:
Regenerated poetry.lock using poetry lock to reflect the updated dependencies in pyproject.toml.
🔧 Changes Made
Fixed dependency conflicts in requirements.txt:
Regenerated poetry.lock file:
Verified consistency between:
Ensured no unintended version upgrades/downgrades by reviewing diffs in poetry.lock.
✅ Checklist
Summary by CodeRabbit
Chores
Documentation