From 86fb348604e936c7d49ff541e8c95124f048da37 Mon Sep 17 00:00:00 2001 From: Lee Clement Date: Fri, 24 Jul 2026 16:12:23 -0230 Subject: [PATCH] fix: ignore ruff CPY rules (ruff 0.16.0 broke CI repo-wide) CI installs unpinned ruff; 0.16.0 (2026-07-23) starts enforcing CPY001 (missing copyright notice) under select = ["ALL"], failing every file. Add the CPY family to the ignore list alongside the other excluded families. Verified with ruff 0.16.0: format, check, and mypy all pass. Co-Authored-By: Claude Fable 5 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 33de1ed0..8847bc57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ ignore = [ "BLE", "C", "COM", + "CPY", "D", "DTZ", "EM",