Skip to content
Merged
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tools = [
"huggingface-hub[mcp]>=1.16.1",
"marker-pdf>=1.10.2",
"mempalace>=3.3.5",
"mistral-vibe>=2.10.1",
"mistral-vibe>=2.11.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.

Medium

The unbounded version constraint >=2.11.0 allows any future version to be installed, including potentially breaking major releases (3.x, 4.x, etc.). This bypasses your review process and can introduce untested behavioral changes on fresh installs or when dependency locks are regenerated.

Consider using a bounded range instead:

  • >=2.11.0,<3.0.0 (allows patch and minor updates within v2)
  • >=2.11.0,<2.12.0 (stricter, only allows patch updates)

This ensures version upgrades remain deliberate and properly validated through your testing pipeline.

Fix in Cursor • Fix in Claude

Prompt for Agent
Task: Address review feedback left on GitHub.
Repository: shunkakinoki/dotfiles#1879
File: pyproject.toml#L16
Action: Open this file location in your editor, inspect the highlighted code, and resolve the issue described below.

Feedback:
The unbounded version constraint `>=2.11.0` allows any future version to be installed, including potentially breaking major releases (3.x, 4.x, etc.). This bypasses your review process and can introduce untested behavioral changes on fresh installs or when dependency locks are regenerated.

Consider using a bounded range instead:
- `>=2.11.0,<3.0.0` (allows patch and minor updates within v2)
- `>=2.11.0,<2.12.0` (stricter, only allows patch updates)

This ensures version upgrades remain deliberate and properly validated through your testing pipeline.

"nvitop>=1.7.0",
"ruff>=0.15.14",
"serena-agent>=1.5.1",
Expand Down
Loading