fix: Upgrade composio-langchain and add composio package (nightly fix)#9582
Conversation
…just its dependencies to match the new version
WalkthroughDependency constraints in pyproject.toml were updated: the project now explicitly depends on composio (>=0.8.9,<1.0.0) and bumps composio-langchain to >=0.8.9,<1.0.0, replacing the previous single constraint on composio-langchain (>=0.8.5,<1.0.0). Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes 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-71: Align or simplify composio-core to avoid redundant/conflicting pins.Since composio brings core transitively, keeping a separate top-level pin can cause backtracking if versions diverge. If you don’t import composio_core directly, drop it; otherwise, at least align the floor with the latest core (0.7.20, released July 3, 2025). (pypi.org)
Option A — remove direct core pin (preferred if not used directly):
- "composio-core>=0.7.2,<1.0.0",Option B — align minimum:
- "composio-core>=0.7.2,<1.0.0", + "composio-core>=0.7.20,<1.0.0",
📜 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: Sanity-check LangChain compatibility (pyproject.toml lines 69–70)
After pinninglangchain==0.3.23, manually install dependencies and run a simple smoke test:from composio import Composio from composio_langchain import LangchainProvider from langchain.chat_models import init_chat_model m = init_chat_model("gpt-4o") c = Composio(provider=LangchainProvider())Verify that both imports and runtime binding against LangChain succeed without API errors.
69-70: Dependencies verification failed:uvCLI not found. Please manually confirm that both composio 0.8.9 and composio-langchain 0.8.9 are correctly locked in your project’s lock file and import without errors.
#9582) ⬆️ (pyproject.toml): upgrade composio package to version 0.8.9 and adjust its dependencies to match the new version



This pull request updates the dependencies in
pyproject.tomlto ensure compatibility and access to new features. The most important change is the upgrade ofcomposio-langchainand the addition of the maincomposiopackage.Dependency updates:
composio-langchainto version>=0.8.9,<1.0.0to use the latest features and fixes.composiopackage at version>=0.8.9,<1.0.0to the dependencies list.Summary by CodeRabbit