From 3a6b162523b32563e73c281f913cf160c7316c62 Mon Sep 17 00:00:00 2001 From: GSRN Date: Tue, 16 Sep 2025 23:40:55 +0200 Subject: [PATCH] chore: Update Python version matrix in service-adapters CI workflow ### Summary of Changes - Modified the Python version matrix in the CI workflow for service-adapters to include versions 3.11, 3.12, 3.13, and 3.14, removing 3.9 and 3.10. ### Expected Results - Ensured compatibility with newer Python features and improvements, enhancing the overall CI process for service-adapters. --- .gitea/workflows/service-adapters.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/service-adapters.yml b/.gitea/workflows/service-adapters.yml index 4c5ffed..0480fec 100644 --- a/.gitea/workflows/service-adapters.yml +++ b/.gitea/workflows/service-adapters.yml @@ -47,7 +47,7 @@ jobs: strategy: matrix: - python-version: [3.9, 3.10, 3.11, 3.12] + python-version: [3.11, 3.12, 3.13, 3.14] steps: - name: Checkout code