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
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ dependencies = [
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"

[tool.bench.frappe-dependencies]
frappe = ">=16.0.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Unbounded range blocks cloud deployment

Frappe Cloud rejects single-sided dependency ranges during app validation, so >=16.0.0 prevents this app from being installed when creating the custom bench the change targets. Declare a bounded Frappe version range accepted by the platform.

Prompt To Fix With AI
This is a comment left during a code review.
Path: pyproject.toml
Line: 19

Comment:
**Unbounded range blocks cloud deployment**

Frappe Cloud rejects single-sided dependency ranges during app validation, so `>=16.0.0` prevents this app from being installed when creating the custom bench the change targets. Declare a bounded Frappe version range accepted by the platform.

How can I resolve this? If you propose a fix, please make it concise.

Fix in Claude Code Fix in Codex


# These dependencies are only installed when developer mode is enabled
[tool.bench.dev-dependencies]
# package_name = "~=1.1.0"
Expand Down