Skip to content
Closed
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 @@ -26,7 +26,7 @@ test = [
"mypy>=1.18,<3",
"pytest>=8,<10",
"PyYAML>=6,<7",
"ruff>=0.15,<0.16",
"ruff>=0.15,<0.17",

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 Badge Bump the synchronized plugin version

Because this change modifies pyproject.toml, it falls under the repository's release-relevant paths and must include the synchronized version bump in plugin.yaml, pyproject.toml, and hermes_local_knowledge/__init__.py. As submitted, scripts/check_version_policy.py --base-ref 81b5c8ea125765e1b2341bfb57538c5eaaaa659d^ --head-ref 81b5c8ea125765e1b2341bfb57538c5eaaaa659d reports Release-relevant files changed without a plugin version bump, so the required version-policy gate will reject this dependency update.

Useful? React with 👍 / 👎.

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 Badge Keep Ruff defaults pinned before allowing 0.16

The CI job installs .[test] and then runs python -m ruff check . (.github/workflows/ci.yml:36-52), but this range lets pip select Ruff 0.16, whose migration notes say the default rules expand from 59 to 413 (https://astral.sh/blog/ruff-v0.16.0). This repo has no [tool.ruff.lint] select config, and the current tree already fails rules that are in Ruff's new default set (python -m ruff check --select BLE001,UP035,I001 . reports 47 errors), so after the version-policy issue is fixed the lint step will still fail unless the old defaults are explicitly selected or the new diagnostics are fixed/ignored.

Useful? React with 👍 / 👎.

"setuptools>=70.1",
]
mutation = [
Expand Down
Loading