From d9859e4dc20bd0fc071fd8d1f51727a557878727 Mon Sep 17 00:00:00 2001 From: Dominik Pataky Date: Mon, 30 Jan 2023 14:27:16 +0100 Subject: [PATCH] Fix workflow pyenv matrix Python 3.9 and 3.11 There's no 3.9.3, only 3.9.2, which is also the correct Debian version. 3.11.1 is available in pyenv 2.3.8, but 2.3.7 is currently in use by the Github action. So 3.11 is used, which uses the latest patch version --- .github/workflows/run_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 6db0c43..9fa1d5b 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -15,8 +15,8 @@ jobs: python: - "3.5.3" # Debian Stretch - "3.7.3" # Debian Buster - - "3.9.3" # Debian Bullseye - - "3.11.1" # Debian Bookworm + - "3.9.2" # Debian Bullseye + - "3.11" # Debian Bookworm uses 3.11.1, but it's in a newer pyenv release steps: - uses: actions/checkout@v3