Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

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.

dependencies = [
"mcp>=1.0.0",
"google-genai>=1.19.0",
Expand All @@ -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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The [tool.setuptools.packages.find] configuration table is used here to discover packages. This feature was introduced in setuptools version 61.0.0. However, the build-system.requires on line 118 only specifies setuptools>=45. This could lead to inconsistent or failed builds in environments with an older setuptools version (between 45 and 61). It's recommended to update the requirement to setuptools>=61.0.0 in build-system.requires to ensure predictable behavior.


[tool.setuptools]
py-modules = ["server", "config"]
Expand All @@ -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 = '''
/(
Expand Down Expand Up @@ -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]
Expand Down
Loading