build(deps): bump PyCQA/docformatter from 1.7.7 to 1.7.8#25
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates docformatter and commitizen pre-commit hooks and applies the updated docformatter style to a few docstrings and a string literal in the codebase. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've found 1 issue
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location path=".pre-commit-config.yaml" line_range="37-39" />
<code_context>
- rev: v1.7.7
+ rev: v1.7.8
hooks:
- id: docformatter
files: ^src/
args: [--config, tox.ini]
- language_version: python3.12
- repo: https://github.com/coatl-dev/flake8
</code_context>
<issue_to_address>
**question (bug_risk):** Consider whether removing `language_version: python3.12` for docformatter is intentional, as it may change which interpreter the hook runs under.
Without `language_version` set, pre-commit will fall back to its default interpreter resolution, which can vary by machine (e.g., different `python3` on PATH). If docformatter behavior or compatibility depends on Python 3.12, it’s safer to keep the explicit version to avoid environment‑dependent differences.
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
| - id: docformatter | ||
| files: ^src/ | ||
| args: [--config, tox.ini] |
There was a problem hiding this comment.
question (bug_risk): Consider whether removing language_version: python3.12 for docformatter is intentional, as it may change which interpreter the hook runs under.
Without language_version set, pre-commit will fall back to its default interpreter resolution, which can vary by machine (e.g., different python3 on PATH). If docformatter behavior or compatibility depends on Python 3.12, it’s safer to keep the explicit version to avoid environment‑dependent differences.
Summary by Sourcery
Update formatting and tooling configuration to align with newer versions of docformatter and commitizen.
Enhancements:
Build: