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",
Generated
+1 -4
View File
@@ -39,9 +39,6 @@ resolution-markers = [
"python_full_version < '3.8.1'",
]
[options]
prerelease-mode = "allow"
[[package]]
name = "addict"
version = "2.4.0"
@@ -6524,7 +6521,7 @@ pycountry = [
[[package]]
name = "pyflowx"
version = "0.2.6"
version = "0.2.7"
source = { editable = "." }
dependencies = [
{ name = "graphlib-backport", marker = "python_full_version < '3.9'" },