From 25efac04a0edab20907ba729c14a4f770b7593af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Verg=C3=A9?= Date: Thu, 30 Nov 2023 11:09:29 +0100 Subject: [PATCH] CI: Fix tests run on Python 3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit c088710 "Support Python versions ≥ 3.8" added CI tests for Python 3.10, for YAML simplifies 3.10 to 3.1 (it's a number), which is not what we want. Let's be explicit about 3.10 (and in the future 3.20, 3.30, etc.) --- .github/workflows/tests.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 4eae62e..41ad42b 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -29,11 +29,11 @@ jobs: strategy: matrix: python-version: - - 3.8 - - 3.9 - - 3.10 - - 3.11 - - 3.12 + - '3.8' + - '3.9' + - '3.10' + - '3.11' + - '3.12' steps: - name: Checkout uses: actions/checkout@v2