fix: Update composio deps to v0.8.5, remove core (nightly fix)#9585
Conversation
…osio-core dependencies to version 0.8.5 to resolve compatibility issues
WalkthroughDependency versions in pyproject.toml were changed from ranged constraints to exact pins for composio and composio-langchain, and the composio-core dependency was removed. No other files or exports were changed. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. ✨ 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/Issue comments)Type Other keywords and placeholders
Status, Documentation and Community
|
|
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
pyproject.toml (1)
69-70: Exact pin to 0.8.5 looks like a downgrade from 0.8.9 range; prefer allowing patch updates (hotfix-ready) via~=.Keeps the nightly fix intention while restoring bugfix cadence and reducing churn.
Apply:
- "composio==0.8.5", - "composio-langchain==0.8.5", + "composio~=0.8.5", + "composio-langchain~=0.8.5",
📜 Review details
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
⛔ Files ignored due to path filters (1)
uv.lockis excluded by!**/*.lock
📒 Files selected for processing (1)
pyproject.toml(1 hunks)
🔇 Additional comments (2)
pyproject.toml (2)
69-70: Safe removal of composio-core confirmed – nocomposio_coreorcomposio.coreimports found; onlycomposioandcomposio-langchainremain in pyproject.toml.
69-70: Verified compatibility: Python 3.13 supported; composio-langchain requires “langchain” unbounded—add “langchain==0.3.23” to your pyproject if strict pinning is needed.



This pull request updates the dependencies in
pyproject.tomlto use specific versions ofcomposioandcomposio-langchain, and removes thecomposio-coredependency.Dependency updates:
composioandcomposio-langchainto use the exact version0.8.5instead of a version range.composio-coredependency from the project.Summary by CodeRabbit