-
Notifications
You must be signed in to change notification settings - Fork 353
Bump autogen to 0.7.1
#663
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
Signed-off-by: Brian Fox <878612+onematchfox@users.noreply.github.com>
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.
Pull Request Overview
This PR updates the autogen dependency from commit c5b893d to 1ca7419 (version 0.7.1) to incorporate a specific fix that the author is interested in. The change updates all three autogen packages consistently across the project.
Key changes:
- Updates git commit hash for autogen-core, autogen-agentchat, and autogen-ext dependencies
- Adds corresponding entries in the uv.sources section for dependency resolution
| [tool.uv.sources] | ||
| kagent = { workspace = true } | ||
| autogen-agentchat = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-agentchat", rev = "1ca7419213027c548eb340b2eb08f3032993e78b" } | ||
| autogen-core = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-core", rev = "1ca7419213027c548eb340b2eb08f3032993e78b" } | ||
| autogen-ext = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-ext", rev = "1ca7419213027c548eb340b2eb08f3032993e78b" } |
Copilot
AI
Jul 30, 2025
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.
The git commit hash is duplicated across multiple entries. Consider defining it as a variable or constant to reduce duplication and make future updates easier.
| [tool.uv.sources] | |
| kagent = { workspace = true } | |
| autogen-agentchat = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-agentchat", rev = "1ca7419213027c548eb340b2eb08f3032993e78b" } | |
| autogen-core = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-core", rev = "1ca7419213027c548eb340b2eb08f3032993e78b" } | |
| autogen-ext = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-ext", rev = "1ca7419213027c548eb340b2eb08f3032993e78b" } | |
| [tool.constants] | |
| commit_hash = "1ca7419213027c548eb340b2eb08f3032993e78b" | |
| [tool.uv.sources] | |
| kagent = { workspace = true } | |
| autogen-agentchat = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-agentchat", rev = tool.constants.commit_hash } | |
| autogen-core = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-core", rev = tool.constants.commit_hash } | |
| autogen-ext = { git = "https://github.com/Microsoft/autogen", subdirectory = "python/packages/autogen-ext", rev = tool.constants.commit_hash } |
|
Would normally wait for CI checks to complete successfully before marking as ready, but I need a maintainer to kick those off :) |
|
Hey there, as of the merging of #671 the declarative backend of |
Thanks for letting me know. Let me get to grips with what that change, and if I still have issues, then I'll get back to you :) |
Contains a fix that I'm particularly interested 😉. Not exactly sure what the process is for doing this. Is this all there is to it, or am I missing something?