-
Notifications
You must be signed in to change notification settings - Fork 1
deps(deps): bump langchain from 1.3.4 to 1.3.9 #2369
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This file is an exact template-sync source ( Useful? React with 👍 / 👎. |
||
| langchain-community==0.4.2 | ||
| langchain-openai==1.3.0 | ||
| langchain-anthropic==1.4.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.
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 requireslangchain-core>=1.4.6whilerequirements.txtstill pinslangchain-core==1.4.3on the next line. In those installs pip has no satisfiable set, so agent/LLM jobs will fail before executing; bump the core pin and regeneraterequirements.lockwith the same change.Useful? React with 👍 / 👎.