From d8f3055a0584abdc78ce099401c680ae75de502f Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Fri, 31 Jan 2025 11:13:04 +0200 Subject: [PATCH] github: Use only Python 3.13 for pull request runs ...speeds up PR cycle time by not running on all the possible Python configurations all the time. --- .github/workflows/python.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index d6e02a69f..d0d2dfc35 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -28,6 +28,8 @@ jobs: - "3.11" - "3.12" - "3.13" + exclude: + - ${{ github.event_name == 'pull_request' && matrix.python-version != '3.13' }} runs-on: ${{ matrix.os }} defaults: