From 41c3d7a8fdd31fc258bb53f7c9009a57925fd1e8 Mon Sep 17 00:00:00 2001 From: yuanzhipeng <2501363769@qq.com> Date: Wed, 28 Jan 2026 09:36:17 +0800 Subject: [PATCH] =?UTF-8?q?fix(pyproject):=20=E9=99=8D=E4=BD=8EPython?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E8=A6=81=E6=B1=82=E4=BB=8E3.13=E5=88=B03.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改了pyproject.toml文件中的Python版本要求,将最低支持版本从3.13降级到3.10, 同时更新了分类器中对应的Python版本声明,以提高项目的兼容性。 --- lzwcai_mcpskills_template/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lzwcai_mcpskills_template/pyproject.toml b/lzwcai_mcpskills_template/pyproject.toml index 6bd929f..78d035c 100644 --- a/lzwcai_mcpskills_template/pyproject.toml +++ b/lzwcai_mcpskills_template/pyproject.toml @@ -7,7 +7,7 @@ name = "lzwcai_mcpskills_template" version = "0.1.0" description = "MCP Server 模板项目 - 用于快速创建新的 MCP 服务" readme = "README.md" -requires-python = ">=3.13" +requires-python = ">=3.10" license = {text = "MIT"} authors = [ {name = "lzwcai", email = "your-email@example.com"}, @@ -17,7 +17,7 @@ classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.10", ] dependencies = [ "httpx>=0.28.1",