Add pyupgrade and django-upgrade hooks, enforce ruff-format in CI#1
Merged
Conversation
- Add pyupgrade (--py311-plus) and django-upgrade (--target-version 4.2) to .pre-commit-config.yaml. - Drop deprecated default_app_config from django_dev_helpers/__init__.py (auto-detected from apps.py since Django 3.2). - Add `ruff format --check .` step to ci.yml so format drift fails CI. - Apply ruff-format across src/ and tests/ (no semantic changes). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced May 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
pyupgrade(--py311-plus) anddjango-upgrade(--target-version 4.2) to.pre-commit-config.yaml.default_app_configfromdjango_dev_helpers/__init__.py(auto-detected fromapps.pysince Django 3.2; flagged bydjango-upgrade).ruff format --check .step toci.ymlso format drift fails CI in every Python × Django matrix cell.ruff-formatacrosssrc/andtests/(no semantic changes — pure formatting).Test plan
uv run pre-commit run --all-files— all hooks pass (idempotent on second pass)uv run pytest -q— 93 passeduv run mypy src/django_dev_helpers— Success, no issues found in 18 source files🤖 Generated with Claude Code