From b5dafe2f070343233cbc1fea830294e2148ff523 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Thu, 21 Aug 2025 22:50:51 +0300 Subject: [PATCH] github: Reduce Python build matrix Test with the earliest and latest supported versions, but skip the ones in the middle to reduce our Python CI build matrix. --- .github/workflows/python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 89df16cf3..1d9a689ec 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -22,7 +22,7 @@ jobs: steps: - id: gen-matrix run: | - echo "python-versions=[\"3.9\",\"3.10\",\"3.11\",\"3.12\",\"3.13\"]" >> $GITHUB_OUTPUT + echo "python-versions=[\"3.9\",\"3.13\"]" >> $GITHUB_OUTPUT test: needs: configure-strategy