From 871f3a398ec0cf42f4bc5a278ed9f2e9e36f8e48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Clgen=20Sar=C4=B1kavak?= Date: Sat, 27 Dec 2025 13:31:21 +0300 Subject: [PATCH 1/2] Add missing Python versions to test matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 298aaa8..7ce4221 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.12, 3.13] + python-version: [3.8, 3.9, 3.10, 3.11, 3.12, 3.13] steps: - uses: actions/checkout@v4 From 1b763aebdeacfd9cfa8db6e228237d33315376af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Clgen=20Sar=C4=B1kavak?= Date: Sat, 27 Dec 2025 13:36:31 +0300 Subject: [PATCH 2/2] Convert python-version entries to strings When they are not strings, 3.10 is interpreted as 3.1 and causes CI to fail. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ce4221..1fb5055 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, 3.10, 3.11, 3.12, 3.13] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4