From 04599f0c1494aa6da14673f9326594a6d418e596 Mon Sep 17 00:00:00 2001 From: Pablo Estevez Date: Fri, 27 Mar 2026 21:48:20 +0000 Subject: [PATCH 1/2] update python matrix --- .github/workflows/python.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index e3ea46d..4dda93f 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -17,12 +17,16 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10] + python-version: [3.10, 3.11, 3.12, 3.13, 3,14] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 + - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v6 + with: + python-version: ${{ matrix.python-version }} + - name: Install dependencies run: | pip install setuptools From b86fc9ee5c6ab1dbf38507961b8ce9b46d5d3db2 Mon Sep 17 00:00:00 2001 From: Pablo Estevez Date: Fri, 27 Mar 2026 21:53:23 +0000 Subject: [PATCH 2/2] change python versions to strings --- .github/workflows/python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 4dda93f..9ff743e 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -17,7 +17,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [3.10, 3.11, 3.12, 3.13, 3,14] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v6