From e26c3cbe5acb797a0be9d1bcc1d95274fdef4dd8 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 9 Nov 2025 08:07:16 +0100 Subject: [PATCH] chore: update CI to create partials on 3.13 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 24c4e97c9..7b6d061b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,12 +91,12 @@ jobs: - name: Run command docs partials extract # This should be kept before the repository check to ensure that the docs are up-to-date + if: ${{ (matrix.python-version != '3.13') }} run: | python build_helpers/create_command_partials.py - name: Check for repository changes - *nix - # TODO: python 3.13 slightly changed the output of argparse. - if: ${{ (matrix.python-version != '3.13') && (runner.os != 'Windows') }} + if: ${{ (runner.os != 'Windows') }} run: | if [ -n "$(git status --porcelain)" ]; then echo "Repository is dirty, changes detected:"