From adca55e6ab4eb1c8c732ee6b479c60ef32370405 Mon Sep 17 00:00:00 2001 From: Javier Cano Cano Date: Tue, 12 May 2026 11:38:26 +0200 Subject: [PATCH] chore(test): Update test configuration It updates test python versions configuration to 3.10 and 3.14. Otherwise, it fails to run coverage tests due to non supported operations such as merge dicts. Signed-off-by: Javier Cano Cano --- tests/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/config.yml b/tests/config.yml index a466aec..844da2d 100644 --- a/tests/config.yml +++ b/tests/config.yml @@ -1,3 +1,3 @@ --- modules: - python_requires: ">=3.9,<=3.13" + python_requires: ">=3.10,<=3.14"