Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dev = [
# Install with: pip install -e ".[langchain]"
# Versions auto-updated by scripts/update_langchain_versions.py
langchain = [
"langchain>=1.3.4,<1.4",
"langchain>=1.3.9,<1.4",
"langchain-core>=1.4.3,<1.5",
"langchain-community>=0.4.2,<0.5",
"langchain-openai>=1.3.0,<1.4",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pandas==3.0.3
tomlkit==0.14.0

# LangChain integration
langchain==1.3.4
langchain==1.3.9

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Bump langchain-core with langchain

This new pin is installed by workflows that run pip install -r requirements.txt (for example .github/workflows/agents-auto-pilot.yml), but langchain 1.3.9's PyPI metadata requires langchain-core>=1.4.6 while requirements.txt still pins langchain-core==1.4.3 on the next line. In those installs pip has no satisfiable set, so agent/LLM jobs will fail before executing; bump the core pin and regenerate requirements.lock with the same change.

Useful? React with 👍 / 👎.

langchain-core==1.4.3
langchain-community==0.4.2
langchain-openai==1.3.0
Expand Down
2 changes: 1 addition & 1 deletion templates/consumer-repo/tools/requirements-llm.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - Use strict X.Y.Z pins for direct workflow dependencies.
# - Do not pin `langchain-core` directly here; let the selected `langchain`
# release resolve a mutually compatible core version.
langchain==1.3.4
langchain==1.3.9
langchain-community==0.4.2
langchain-openai==1.3.0
langchain-anthropic==1.4.4
Expand Down
2 changes: 1 addition & 1 deletion tools/requirements-llm.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - Use strict X.Y.Z pins for direct workflow dependencies.
# - Do not pin `langchain-core` directly here; let the selected `langchain`
# release resolve a mutually compatible core version.
langchain==1.3.4
langchain==1.3.9

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Keep the consumer template pin in sync

This file is an exact template-sync source (.github/sync-manifest.yml lines 213-215), and maint-68-sync-consumer-repos.yml copies consumer files from templates/consumer-repo, where templates/consumer-repo/tools/requirements-llm.txt still says langchain==1.3.4. With only the source changed, Health 72/validate_template_sync.py will flag drift and consumer sync PRs won't deliver the bumped LLM dependency; update the template copy in the same commit.

Useful? React with 👍 / 👎.

langchain-community==0.4.2
langchain-openai==1.3.0
langchain-anthropic==1.4.4
Expand Down