-
-
Notifications
You must be signed in to change notification settings - Fork 747
Fix/clink pyproject #272
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
Fix/clink pyproject #272
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "zen-mcp-server" | ||
version = "7.1.0" | ||
description = "AI-powered MCP server with multiple model providers" | ||
requires-python = ">=3.9" | ||
requires-python = ">=3.10" | ||
dependencies = [ | ||
"mcp>=1.0.0", | ||
"google-genai>=1.19.0", | ||
|
@@ -12,7 +12,7 @@ dependencies = [ | |
] | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["tools*", "providers*", "systemprompts*", "utils*", "conf*"] | ||
include = ["tools*", "providers*", "systemprompts*", "utils*", "conf*", "clink*"] | ||
Comment on lines
14
to
+15
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. The |
||
|
||
[tool.setuptools] | ||
py-modules = ["server", "config"] | ||
|
@@ -28,7 +28,7 @@ zen-mcp-server = "server:run" | |
|
||
[tool.black] | ||
line-length = 120 | ||
target-version = ['py39', 'py310', 'py311', 'py312', 'py313'] | ||
target-version = ['py310', 'py311', 'py312', 'py313'] | ||
include = '\.pyi?$' | ||
extend-exclude = ''' | ||
/( | ||
|
@@ -59,7 +59,7 @@ line_length = 120 | |
skip_glob = ["venv/*", ".venv/*", ".zen_venv/*"] | ||
|
||
[tool.ruff] | ||
target-version = "py39" | ||
target-version = "py310" | ||
line-length = 120 | ||
|
||
[tool.ruff.lint] | ||
|
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.
Changing the minimum required Python version from 3.9 to 3.10 is a breaking change for users on Python 3.9. According to semantic versioning principles, breaking changes should result in a major version bump (e.g., from 7.x.x to 8.0.0). Since this project uses semantic-release, please ensure the commit message for this change is formatted to indicate a breaking change, which will trigger the correct major version release.