Skip to content

Commit 54f0cd2

Browse files
remyluslosiusclaude
andcommitted
fix(ci): Pin Black version to 24.10.0 in Code Quality workflow
The Code Quality workflow was using the latest Black version (25.x), which has different formatting rules than Black 24.10.0 that we use locally and in the auto-format workflow. This caused CI to fail even after formatting files locally with Black 24.10.0. Changes: - Pin black==24.10.0 in code-quality.yml workflow This ensures consistent formatting between local development, auto-format workflow, and CI validation. Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent fbe478d commit 54f0cd2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install black flake8 pylint mypy bandit vulture radon
26+
pip install black==24.10.0 flake8 pylint mypy bandit vulture radon
2727
cd backend && pip install -r requirements.txt
2828
2929
- name: Black formatter

0 commit comments

Comments
 (0)