Skip to content
Open
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
2 changes: 1 addition & 1 deletion backend/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ data-process = [
"celery>=5.3.6",
"flower>=2.0.1",
"nest_asyncio>=1.5.6",
"unstructured[csv,docx,pdf,pptx,xlsx,md]==0.18.14",
"unstructured[csv,docx,pdf,pptx,xlsx,md]==0.23.1",

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

unstructured 从 0.18.14 升级到 0.23.1 跨了多个 minor version(0.19→0.20→0.21→0.22→0.23)。从 changelog 看,0.22.31 将 isolate_tables 重命名为 isolate_table,这是一个 breaking change。如果项目代码中使用了 isolate_tables 参数,合并后会导致报错。建议先全局搜索确认 API 兼容性。

"huggingface_hub>=0.30.0,<1.0"
]
test = [
Expand Down
Loading