-
Notifications
You must be signed in to change notification settings - Fork 19k
fix(core): unblock packaging dependency #32004
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
CodSpeed WallTime Performance ReportMerging #32004 will not alter performanceComparing
|
CodSpeed Instrumentation Performance ReportMerging #32004 will not alter performanceComparing Summary
|
libs/core/langchain_core/version.py
Outdated
@@ -1,3 +1,3 @@ | |||
"""langchain-core version information and utilities.""" | |||
|
|||
VERSION = "0.3.68" | |||
__version__ = "0.3.68" |
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.
Why has this change been made?
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 is a breaking API change -- we don't want to make this
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.
It allowed the pyproject to determine the version automatically so that it didn't have to be tracked in two places but retained the import performance requirements. Not critical to the packaging pinning issues that was the motivation for the PR, so I reverted.
When I was testing it locally I changed the version in the pyproject but the imported version didn't change which was unexpected so I tried to centralize.
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.
OK we'll likely make this fix separately
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.
Could you allow maintainers to update this PR? |
@@ -39,6 +38,7 @@ dev = [ | |||
"grandalf<1.0,>=0.8", | |||
] | |||
test = [ | |||
"packaging<26,>=23.2", |
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.
It should not be moved into the test
group. It's an explicit dependency of langchain_core
I'll take over and make a separate PR to unblock |
Description:
Issue: #32003