fix: pin ruff version to 0.12.7 across all environments

- Pin ruff==0.12.7 in pyproject.toml dev dependencies
- Update CI to use exact ruff version instead of latest
- Add comments explaining version pinning rationale
- Ensures consistent formatting across local, CI, and pre-commit
This commit is contained in:
Andy Lee
2025-08-06 22:56:32 -07:00
parent 6061e8f2de
commit ada8bcbc70
3 changed files with 4 additions and 4 deletions

View File

@@ -26,9 +26,9 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install ruff
- name: Install dependencies with ruff
run: |
uv tool install ruff
uv pip install --system ruff==0.12.7
- name: Run ruff check
run: |