-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Update release #1191
Update release #1191
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
python/plugins/camel/setup.py
Outdated
@@ -23,7 +23,7 @@ | |||
], | |||
python_requires=">=3.9,<4", | |||
install_requires=[ | |||
"composio_core>=0.6.11,<0.7.0", | |||
"composio_core>=0.6.0,<0.7.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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
"composio_core>=0.6.0,<0.7.0", | |
"composio_core==0.6.4" |
python/plugins/google/setup.py
Outdated
@@ -23,7 +23,7 @@ | |||
], | |||
python_requires=">=3.9,<4", | |||
install_requires=[ | |||
"composio_core>=0.6.11,<0.7.0", | |||
"composio_core>=0.6.0,<0.7.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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
"composio_core>=0.6.0,<0.7.0", | |
"composio_core==0.6.4" |
python/plugins/griptape/setup.py
Outdated
@@ -22,6 +22,6 @@ | |||
"Operating System :: OS Independent", | |||
], | |||
python_requires=">=3.9,<4", | |||
install_requires=["composio_core>=0.6.11,<0.7.0", "griptape>=0.24.2"], | |||
install_requires=["composio_core>=0.6.0,<0.7.0", "griptape>=0.24.2"], |
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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
install_requires=["composio_core>=0.6.0,<0.7.0", "griptape>=0.24.2"], | |
install_requires=[ |
python/plugins/langchain/setup.py
Outdated
@@ -27,7 +27,7 @@ | |||
"langchain-openai>=0.0.2.post1", | |||
"pydantic>=2.6.4", | |||
"langchainhub>=0.1.15", | |||
"composio_core>=0.6.11,<0.7.0", | |||
"composio_core>=0.6.0,<0.7.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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
"composio_core>=0.6.0,<0.7.0", | |
"composio_core==0.6.4" |
python/plugins/llamaindex/setup.py
Outdated
@@ -24,7 +24,7 @@ | |||
python_requires=">=3.9,<4", | |||
install_requires=[ | |||
"llama_index>=0.10.43", | |||
"composio_core>=0.6.11,<0.7.0", | |||
"composio_core>=0.6.0,<0.7.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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
"composio_core>=0.6.0,<0.7.0", | |
"composio_core==0.6.4" |
python/plugins/lyzr/setup.py
Outdated
@@ -25,7 +25,7 @@ | |||
install_requires=[ | |||
"lyzr-automata>=0.1.3", | |||
"pydantic>=2.6.4", | |||
"composio_core>=0.6.11,<0.7.0", | |||
"composio_core>=0.6.0,<0.7.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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
"composio_core>=0.6.0,<0.7.0", | |
"composio_core==0.6.0" |
python/plugins/openai/setup.py
Outdated
@@ -22,6 +22,6 @@ | |||
"Operating System :: OS Independent", | |||
], | |||
python_requires=">=3.9,<4", | |||
install_requires=["composio_core>=0.6.11,<0.7.0", "openai"], | |||
install_requires=["composio_core>=0.6.0,<0.7.0", "openai"], |
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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
install_requires=["composio_core>=0.6.0,<0.7.0", "openai"], | |
install_requires=["composio_core==0.6.0", "openai"] |
python/plugins/phidata/setup.py
Outdated
@@ -23,7 +23,7 @@ | |||
], | |||
python_requires=">=3.9,<4", | |||
install_requires=[ | |||
"composio_core>=0.6.11,<0.7.0", | |||
"composio_core>=0.6.0,<0.7.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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
"composio_core>=0.6.0,<0.7.0", | |
"composio_core==0.6.4" |
python/plugins/praisonai/setup.py
Outdated
@@ -22,6 +22,6 @@ | |||
"Operating System :: OS Independent", | |||
], | |||
python_requires=">=3.9", | |||
install_requires=["composio_core>=0.6.11,<0.7.0", "PraisonAI>=0.0.2"], | |||
install_requires=["composio_core>=0.6.0,<0.7.0", "PraisonAI>=0.0.2"], |
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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
install_requires=["composio_core>=0.6.0,<0.7.0", "PraisonAI>=0.0.2"], | |
install_requires=[ |
python/swe/setup.py
Outdated
@@ -66,7 +66,7 @@ def scan_for_package_data( | |||
"swebench==2.1.0", | |||
"datasets>=2.20.0", | |||
"gitpython>=3.1.43", | |||
"composio_core>=0.6.11,<0.7.0", | |||
"composio_core>=0.6.0,<0.7.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.
The version bump for composio_core is too broad. It should be pinned to a specific minor version to avoid unexpected breaking changes from future 0.6.x releases.
📝 Committable Code Suggestion
‼️ Ensure you review the code suggestion before committing it to the branch. Make sure it replaces the highlighted code, contains no missing lines, and has no issues with indentation.
"composio_core>=0.6.0,<0.7.0", | |
"composio_core==0.6.4" |
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 cc4f2b0 in 1 minute and 16 seconds
More details
- Looked at
324
lines of code in18
files - Skipped
0
files when reviewing. - Skipped posting
8
drafted comments based on config settings.
1. python/plugins/autogen/setup.py:26
- Draft comment:
The version constraint forcomposio_core
was changed from>=0.6.11
to>=0.6.0
. This is a downgrade in the minimum version requirement and could introduce compatibility issues. Please ensure this change is intentional. - Reason this comment was not posted:
Comment did not seem useful.
2. python/plugins/camel/setup.py:26
- Draft comment:
The version constraint forcomposio_core
was changed from>=0.6.11
to>=0.6.0
. This is a downgrade in the minimum version requirement and could introduce compatibility issues. Please ensure this change is intentional. - Reason this comment was not posted:
Marked as duplicate.
3. python/plugins/google/setup.py:26
- Draft comment:
The version constraint forcomposio_core
was changed from>=0.6.11
to>=0.6.0
. This is a downgrade in the minimum version requirement and could introduce compatibility issues. Please ensure this change is intentional. - Reason this comment was not posted:
Marked as duplicate.
4. python/plugins/langchain/setup.py:30
- Draft comment:
The version constraint forcomposio_core
was changed from>=0.6.11
to>=0.6.0
. This is a downgrade in the minimum version requirement and could introduce compatibility issues. Please ensure this change is intentional. - Reason this comment was not posted:
Marked as duplicate.
5. python/plugins/llamaindex/setup.py:27
- Draft comment:
The version constraint forcomposio_core
was changed from>=0.6.11
to>=0.6.0
. This is a downgrade in the minimum version requirement and could introduce compatibility issues. Please ensure this change is intentional. - Reason this comment was not posted:
Marked as duplicate.
6. python/plugins/lyzr/setup.py:28
- Draft comment:
The version constraint forcomposio_core
was changed from>=0.6.11
to>=0.6.0
. This is a downgrade in the minimum version requirement and could introduce compatibility issues. Please ensure this change is intentional. - Reason this comment was not posted:
Marked as duplicate.
7. python/plugins/phidata/setup.py:26
- Draft comment:
The version constraint forcomposio_core
was changed from>=0.6.11
to>=0.6.0
. This is a downgrade in the minimum version requirement and could introduce compatibility issues. Please ensure this change is intentional. - Reason this comment was not posted:
Marked as duplicate.
8. python/swe/setup.py:69
- Draft comment:
The version constraint forcomposio_core
was changed from>=0.6.11
to>=0.6.0
. This is a downgrade in the minimum version requirement and could introduce compatibility issues. Please ensure this change is intentional. - Reason this comment was not posted:
Marked as duplicate.
Workflow ID: wflow_yLp3s7DVcPcnBA3n
You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
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! Incremental review on 287b33a in 12 seconds
More details
- Looked at
140
lines of code in11
files - Skipped
0
files when reviewing. - Skipped posting
1
drafted comments based on config settings.
1. python/plugins/autogen/setup.py:26
- Draft comment:
Ensure that the updated version constraint forcomposio_core
(>=0.6.11,<0.7.0) is compatible with all other dependencies in this setup file. This comment applies to all other setup files in this PR where the same change is made. - Reason this comment was not posted:
Confidence changes required:50%
The PR updates the version constraint for thecomposio_core
package across multiple setup files. This is a straightforward change, but it's important to ensure consistency and correctness across all files.
Workflow ID: wflow_3gHnzUp5qV45IECi
You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet
mode, and more.
Code Review SummaryChanges Overview
Analysis
Recommendations
Overall Assessment✅ LGTM (Looks Good To Me)
|
Important
Update version to 0.6.14 across core, plugins, and Dockerfile; update SWE Kit to 0.3.15.
0.6.14
in__version__.py
,setup.py
, and multiple pluginsetup.py
files.swekit
version to0.3.15
inswe/setup.py
.composio-core[all]==0.6.14
.This description was created by for 287b33a. It will automatically update as commits are pushed.