From 45456108863b3e042fd34d7e78045ba7a35b8ca0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 1 Feb 2026 12:12:11 +0000 Subject: [PATCH] Pin Python 3.12 in Black linter workflow to fix Python 3.14 incompatibility Co-authored-by: k9ert <117085+k9ert@users.noreply.github.com> --- .github/workflows/zblack.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/zblack.yml b/.github/workflows/zblack.yml index 4a54b98df..3aff51c10 100644 --- a/.github/workflows/zblack.yml +++ b/.github/workflows/zblack.yml @@ -8,6 +8,8 @@ jobs: steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 + with: + python-version: '3.12' # Pin Python to avoid 3.14 incompatibility with Black 22.3.0 # This version should match what you can find in .pre-commit-config.yaml - uses: psf/black@22.3.0 # https://black.readthedocs.io/en/stable/integrations/github_actions.html with: