From 4ac69f12af278845f10d9815c5ad02e240782f71 Mon Sep 17 00:00:00 2001 From: Muhamed Fazal PS Date: Tue, 14 Jul 2026 22:10:50 +0530 Subject: [PATCH] fix: bump black pre-commit hook to 24.10.0 for Python 3.14 compatibility Black 22.6.0 crashes on Python 3.14 when reformatting multiple files (raises RuntimeError: no current event loop). Bump to 24.10.0 which includes the fix for this issue. Fixes #417 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 32998d3b..d4cc0fac 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: # hooks: # - id: isort - repo: https://github.com/psf/black - rev: 22.6.0 + rev: 24.10.0 hooks: - id: black