Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[project]
name = "amrita-plugin-exec"
description = ""
version = "0.1.0"
dependencies = ["amrita[full]>=0.4.2"]
version = "0.1.1"
dependencies = [
"amrita[full]>=0.4.2",
"docker>=6.0.0"
]
Comment on lines +5 to +8
Copy link

Choose a reason for hiding this comment

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

suggestion (bug_risk): 建议收紧 docker 依赖的版本范围,以减少未来出现破坏性变更带来的风险。

当前开放式的 docker>=6.0.0 允许未来主版本升级,而这些主版本可能会引入破坏性变更。请根据你已测试过的版本添加一个上界(例如 <7),以避免出现意料之外的运行时不兼容问题。

Suggested change
dependencies = [
"amrita[full]>=0.4.2",
"docker>=6.0.0"
]
dependencies = [
"amrita[full]>=0.4.2",
"docker>=6.0.0,<7.0.0"
]
Original comment in English

suggestion (bug_risk): Consider constraining the docker dependency range to reduce future breakage risk.

An open-ended docker>=6.0.0 allows future major versions that may introduce breaking changes. Please add an upper bound (e.g. <7) consistent with the versions you’ve tested to avoid unexpected runtime incompatibilities.

Suggested change
dependencies = [
"amrita[full]>=0.4.2",
"docker>=6.0.0"
]
dependencies = [
"amrita[full]>=0.4.2",
"docker>=6.0.0,<7.0.0"
]

readme = "README.md"
requires-python = ">=3.10, <3.14"

Expand Down
Loading
Loading