-
Notifications
You must be signed in to change notification settings - Fork 40
build: relax pinned build dependencies in setup.py #271
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
base: master
Are you sure you want to change the base?
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,5 +7,5 @@ pip-tools | |
| pre-commit | ||
| pylint | ||
| pytest-cov | ||
| python-toon | ||
| python-toon==0.1.2 | ||
| mcp==1.9.1 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,8 +56,8 @@ def get_long_description(): | |
| "json5>=0.9.0", # For parsing JSONC (JSON with comments) in VS Code settings | ||
| "cloudsmith-api>=2.0.24,<3.0", # Compatible upto (but excluding) 3.0+ | ||
| "keyring>=25.4.1", | ||
| "mcp==1.9.1", | ||
| "python-toon==0.1.2", | ||
| "mcp>=1.9.1", | ||
| "python-toon>=0.1.2", | ||
|
||
| "requests>=2.18.4", | ||
| "requests_toolbelt>=1.0.0", | ||
| "semver>=2.7.9", | ||
|
|
||
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.
Relaxing these dependencies to only a lower bound means future major releases (e.g., mcp 2.x / python-toon 1.x) could be selected and break the CLI at install time. Consider adding an upper bound (or using a compatible-release spec) based on the highest version known to work, and bump it intentionally when compatibility is verified.