From 38d72a9f72b25da34a4965191c956a91a76165a4 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Tue, 31 Oct 2023 13:06:27 +0100 Subject: [PATCH] workflows: update the "bleeding edge" python version to 3.12 this has been released about a month ago. It would be nicer to increase the required minimum version to 3.10, but that has to wait at least until Ubuntu 20.04 falls out of support... Signed-off-by: Andreas Lauser Signed-off-by: Alexander Walz --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7b64a431..d8585c78 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.12" - name: Setup up YaPF formatting linter run: | @@ -38,7 +38,7 @@ jobs: matrix: # restrict the matrix to the oldest and the latest Python # version being supported by odxtools - python-version: ["3.8", "3.11"] + python-version: ["3.8", "3.12"] steps: - uses: actions/checkout@v3 @@ -73,7 +73,7 @@ jobs: os: [ubuntu-latest, windows-latest] # restrict the matrix to the oldest and the latest Python # version being supported by odxtools - python-version: ["3.8", "3.11"] + python-version: ["3.8", "3.12"] # due to the slow windows runners, we refrain from testing every python # version on windows-latest