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 @@ -16,7 +16,7 @@ dev = [
"pytest-cov==7.1.0",
"mypy==2.1.0",
"black==26.5.1",
"ruff==0.15.19",
"ruff==0.15.20",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

Keep the Ruff pin in sync with the workflow source of truth.

.github/workflows/autofix-versions.env still hard-pins RUFF_VERSION=0.15.19, and scripts/sync_dev_dependencies.py maps that value directly to ruff. This change will diverge from the sync automation and can be overwritten or leave the repo with conflicting tool versions.

Proposed fix
- RUFF_VERSION=0.15.19
+ RUFF_VERSION=0.15.20

As per coding guidelines, keep pyproject.toml dev-tool pins aligned with the repository’s tooling contract.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@pyproject.toml` at line 19, The Ruff version pin in pyproject.toml is now out
of sync with the repository’s tooling source of truth. Update the Ruff-related
version handling so the pin matches the value driven by
.github/workflows/autofix-versions.env and the mapping used in
scripts/sync_dev_dependencies.py, keeping the dev dependency contract aligned
with the sync automation. Locate the Ruff entry in pyproject.toml and make sure
it reflects the same version as the workflow-backed source.

"coverage==7.14.3",
]

Expand Down
Loading