Skip to content

chore: bump dependency floors to match installed versions#84

Merged
Abernaughty merged 2 commits intomainfrom
chore/bump-dependency-floors
Apr 1, 2026
Merged

chore: bump dependency floors to match installed versions#84
Abernaughty merged 2 commits intomainfrom
chore/bump-dependency-floors

Conversation

@Abernaughty
Copy link
Copy Markdown
Owner

@Abernaughty Abernaughty commented Apr 1, 2026

Summary

Dependency audit found that uv sync already resolves to latest 1.x/4.x versions of all major packages. The pyproject.toml floors were outdated — documenting >=0.3 while actually running >=1.0. This PR aligns the floor declarations with reality.

This is a zero-risk change — no new packages are being pulled in. The installed versions are unchanged.

pyproject.toml changes

Package Old floor New floor Actually installed
langgraph >=0.3 >=1.0 ~1.1.x
langchain >=0.3 >=1.0 1.2.13
langchain-anthropic >=0.3 >=1.0 1.4.0
langchain-google-genai >=2.0 >=4.0 ~4.x
chromadb >=0.5 >=1.0 1.5.5
langfuse >=3.0 >=4.0 ~4.x

Unchanged (already correct): e2b>=1.0, e2b-code-interpreter>=1.0, mcp>=1.7, python-dotenv>=1.0, pydantic>=2.0, all dev/api groups.

mcp-config.json changes

  • github-mcp-server: v0.31.0v0.32.0 (2026-03-06)
    • Context reduction for tool outputs (trimmed get_files, list_issues, etc.)
    • Copilot tools moved to default toolset
    • MCP Apps UI improvements
  • last_reviewed: 2026-03-252026-04-01
  • filesystem MCP: unchanged (still 2026.1.14)

Verification

Run locally to confirm no resolution changes:

cd dev-suite
uv sync --group dev --group api
uv run -m pytest tests/ -x -q

CI should show identical test results to main.

Summary by CodeRabbit

  • Chores
    • Updated GitHub MCP server configuration to v0.32.0 with updated behavioral and tooling changes.
    • Updated development dependencies (langgraph, langchain, langchain-anthropic, langchain-google-genai, chromadb, and langfuse) to compatible versions.

Dependency audit confirmed uv sync already resolves to 1.x/4.x:
- langgraph: >=0.3 -> >=1.0 (installed ~1.1.x, GA Oct 2025)
- langchain: >=0.3 -> >=1.0 (installed 1.2.13)
- langchain-anthropic: >=0.3 -> >=1.0 (installed 1.4.0)
- langchain-google-genai: >=2.0 -> >=4.0 (installed ~4.x)
- chromadb: >=0.5 -> >=1.0 (installed 1.5.5)
- langfuse: >=3.0 -> >=4.0 (installed ~4.x)
v0.32.0 (2026-03-06): context reduction for tool outputs,
Copilot tools moved to default toolset, MCP Apps UI improvements.
Updated last_reviewed to 2026-04-01.
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Apr 1, 2026

📝 Walkthrough

Walkthrough

This PR updates development suite configuration files: version numbers for the GitHub MCP server (v0.31.0 → v0.32.0) and dependency constraints for multiple packages including LangGraph, LangChain, ChromaDB, and Langfuse.

Changes

Cohort / File(s) Summary
MCP Server Configuration
dev-suite/mcp-config.json
Updated GitHub MCP server version from v0.31.0 to v0.32.0, including Docker image tag and notes. Advanced last_reviewed timestamp from 2026-03-25 to 2026-04-01.
Python Dependencies
dev-suite/pyproject.toml
Bumped minimum version constraints: langgraph, langchain, langchain-anthropic from ≥0.3 to ≥1.0; langchain-google-genai from ≥2.0 to ≥4.0; chromadb from ≥0.5 to ≥1.0; langfuse from ≥3.0 to ≥4.0.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Poem

🐰 Versions hop and dependencies climb,
From point-three to one, it's refresh time,
The MCP server takes a bigger leap,
While our constraints grow, our standards keep,
Configuration squared, the versions gleam! ✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately reflects the main objective: bumping dependency floor versions to match installed versions in pyproject.toml, along with updating mcp-config.json metadata.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/bump-dependency-floors

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a 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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
dev-suite/pyproject.toml (1)

45-45: 🛠️ Refactor suggestion | 🟠 Major

Align Ruff target-version with Python minimum.

The Ruff target-version is set to "py311", but should align with the project's minimum Python version. Once line 5 is updated to >=3.13, update this to "py313".

📝 Proposed fix
-target-version = "py311"
+target-version = "py313"
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@dev-suite/pyproject.toml` at line 45, Update the Ruff configuration so its
target-version matches the project's minimum Python version change to >=3.13;
specifically, change the target-version value currently set as "py311" to
"py313" in the pyproject.toml (the key named target-version under the
[tool.ruff] section) so Ruff's VM target aligns with the new minimum Python
version.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@dev-suite/pyproject.toml`:
- Line 5: Update the Python minimum version in pyproject.toml by changing the
requires-python setting from ">=3.11" to ">=3.13"; locate the requires-python
key in dev-suite/pyproject.toml and update its value accordingly so the project
targets Python 3.13 as the minimum.

---

Outside diff comments:
In `@dev-suite/pyproject.toml`:
- Line 45: Update the Ruff configuration so its target-version matches the
project's minimum Python version change to >=3.13; specifically, change the
target-version value currently set as "py311" to "py313" in the pyproject.toml
(the key named target-version under the [tool.ruff] section) so Ruff's VM target
aligns with the new minimum Python version.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 659c5849-dc76-46e0-bf45-286259b9af4e

📥 Commits

Reviewing files that changed from the base of the PR and between 380ad12 and bd47d8f.

📒 Files selected for processing (2)
  • dev-suite/mcp-config.json
  • dev-suite/pyproject.toml

@@ -4,14 +4,14 @@ version = "0.2.0"
description = "Stateful AI Workforce orchestrator — Phase 2"
requires-python = ">=3.11"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Update Python minimum version to 3.13.

The project specifies requires-python = ">=3.11", but the coding guidelines mandate Python 3.13 as the minimum version. As per coding guidelines, Python project must target Python 3.13 as the minimum version.

📝 Proposed fix
-requires-python = ">=3.11"
+requires-python = ">=3.13"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
requires-python = ">=3.11"
requires-python = ">=3.13"
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@dev-suite/pyproject.toml` at line 5, Update the Python minimum version in
pyproject.toml by changing the requires-python setting from ">=3.11" to
">=3.13"; locate the requires-python key in dev-suite/pyproject.toml and update
its value accordingly so the project targets Python 3.13 as the minimum.

@Abernaughty Abernaughty merged commit 9900c33 into main Apr 1, 2026
3 checks passed
@Abernaughty Abernaughty deleted the chore/bump-dependency-floors branch April 1, 2026 18:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant