-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
fix: removed crewai plugin compatibility upper limit #976
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
👍 Looks good to me! Reviewed everything up to 839397d in 8 seconds
More details
- Looked at
13
lines of code in1
files - Skipped
0
files when reviewing. - Skipped posting
1
drafted comments based on config settings.
1. python/plugins/crew_ai/setup.py:27
- Draft comment:
Consider specifying an upper limit for the 'crewai' dependency to prevent potential compatibility issues with future versions. - Reason this comment was not posted:
Comment did not seem useful.
Workflow ID: wflow_uFh3go1WKoP6Hk8O
You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
This comment was generated by github-actions[bot]! JS SDK Coverage Report📊 Coverage report for JS SDK can be found at the following URL: 📁 Test report folder can be found at the following URL: |
@@ -24,7 +24,7 @@ | |||
python_requires=">=3.9,<4", | |||
install_requires=[ | |||
"composio_langchain>=0.5.50,<=0.5.52-rc.2", | |||
"crewai>=0.51.0,<=0.75.0", | |||
"crewai>=0.51.0", |
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.
While removing the upper version limit provides more flexibility, it's recommended to add a comment here documenting:
- The minimum version requirement rationale
- That compatibility with newer versions has been tested
- The latest tested version number
This will help future maintainers understand the version constraints and testing status.
Code Review SummaryChanges Overview
Technical Assessment
Recommendations
Risk Assessment: LowThe change is safe due to:
Overall, the changes are acceptable with minor documentation improvements suggested. |
Important
Removed upper version limit for
crewai
insetup.py
to allow versions>=0.51.0
.crewai
ininstall_requires
insetup.py
. Now allows versions>=0.51.0
.This description was created by
for 839397d. It will automatically update as commits are pushed.