-
Notifications
You must be signed in to change notification settings - Fork 36
fix(aenv): pin transitive deps to coexist #76
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 |
|---|---|---|
|
|
@@ -24,15 +24,16 @@ classifiers = [ | |
| ] | ||
|
|
||
| dependencies = [ | ||
| "pydantic>=1.10.0", | ||
| "pydantic>=2.7,<2.12", | ||
| "pydantic-settings>=2.0", | ||
|
Contributor
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. Adding |
||
| "httpx>=0.20.0", | ||
| "anyio>=3.0.0", | ||
| "typing-extensions>=4.0.0", | ||
| "mcp>=1.0.0", | ||
| "mcp>=1.0.0,<2", | ||
| "uvicorn>=0.20.0", | ||
| "click>=8.0.0", | ||
| "requests>=2.25.0", | ||
| "fastmcp>=2.13.0", | ||
| "fastmcp>=2.13.0,<3", | ||
| "rich>=13.0.0", | ||
| "typer>=0.9.0", | ||
| "tabulate>=0.9.0", | ||
|
|
||
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.
Pinning
pydanticto a minor version upper bound (<2.12) is quite restrictive for a library and may cause dependency conflicts for downstream users who require newer versions of Pydantic (e.g., 2.12 or 2.13) in their own projects. If the intent is to avoid thepydantic-core 2.41issue introduced inpydantic 2.13, consider using<2.13to allow for more flexibility, unless2.12is also confirmed to be incompatible. Additionally, since moving from1.10.0to2.7is a major version jump that drops Pydantic v1 support, consider bumping the package version (e.g., to0.2.0) to signal this breaking change to users.