build: 调整llm依赖条件并更新pyflowx版本

1. 为llm依赖添加linux平台限制
2. 移除uv.lock中的前置发布版本配置项
3. 将pyflowx版本从0.2.6升级到0.2.7
This commit is contained in:
2026-06-27 15:33:33 +08:00
parent 2b3f4b82d3
commit ea0c51de5e
2 changed files with 4 additions and 5 deletions
+3 -1
View File
@@ -66,7 +66,9 @@ dev = [
"tox-uv>=1.13.1",
"tox>=4.25.0",
]
llm = ["sglang[all]==0.5.10rc0; python_version >= '3.10'"]
llm = [
"sglang[all]==0.5.10rc0; python_version >= '3.10' and sys_platform == 'linux'",
]
office = [
"pillow>=10.4.0",
"pymupdf>=1.24.11",