From 7dbf44291062d372f7d9f0bb228e4675e5197d8c Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Fri, 15 Aug 2025 18:42:47 -0400 Subject: [PATCH] feat(test-python): Add Python 3.14 to the defaults This defaults to testing on Python 3.14 so we can find incompatibilities before the push for core26. Signed-off-by: Alex Lowe --- .github/workflows/test-python.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-python.yaml b/.github/workflows/test-python.yaml index e154016..68cc8d1 100644 --- a/.github/workflows/test-python.yaml +++ b/.github/workflows/test-python.yaml @@ -9,7 +9,7 @@ on: The platforms to run fast tests on, as a JSON array. fast-test-python-versions: type: string - default: '["3.10", "3.11", "3.12", "3.13"]' + default: '["3.10", "3.11", "3.12", "3.13", "3.14"]' description: | The python versions to run fast tests on, as a JSON array. slow-test-platforms: @@ -19,7 +19,7 @@ on: The platforms to run slow tests on, as a JSON array. slow-test-python-versions: type: string - default: '["3.10"]' + default: '["3.10", "3.14"]' description: | The python versions to run slow tests on, as a JSON array. lowest-python-platform: