From 8bddd3ccfe3dc8a240910ba08460f1d14b924097 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 21 Jan 2026 15:26:15 +0000 Subject: [PATCH] Bump minimum black version to 26.1.0 Black 26.1.0 introduced new formatting rules that affect this codebase. Pin to >=26.1.0 to ensure consistent formatting across all environments. Black 26.1.0 requires Python >=3.10 which matches this project's minimum. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a50a3a8..55ccda9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ [dependency-groups] dev = [ - "black>=24.1.1", + "black>=26.1.0", "cogapp", "hypothesis", "pytest",