From 844e613bb43a425e6883ace582b536d107e054d2 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Mon, 22 Dec 2025 11:33:02 +0100 Subject: [PATCH 1/2] chore(deps): Update pyupgrade version to 3.21.2 Signed-off-by: Jan Kowalleck --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5bccba5f..8746716f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -102,7 +102,7 @@ tomli = { version = "2.3.0", python = "<3.11" } tox = "4.30.3" xmldiff = "2.7.0" bandit = "1.8.6" -pyupgrade = "3.21.0" +pyupgrade = "3.21.2" deptry = "0.23.1" # for tests, use the GPL-version of jsonschema format validators - they are faster jsonschema = { version = "*", extras = ["format"], optional=true } From ebec8456afe3912c3f48179d1e8b9a9651b6e674 Mon Sep 17 00:00:00 2001 From: Jan Kowalleck Date: Mon, 22 Dec 2025 11:41:08 +0100 Subject: [PATCH 2/2] Update pyupgrade version specification in pyproject.toml Signed-off-by: Jan Kowalleck --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8746716f..baef0ca3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -102,7 +102,10 @@ tomli = { version = "2.3.0", python = "<3.11" } tox = "4.30.3" xmldiff = "2.7.0" bandit = "1.8.6" -pyupgrade = "3.21.2" +pyupgrade = [ + { version = "3.21.0", python = "<3.10" }, + { version = "3.21.2", python = ">=3.10" }, +] deptry = "0.23.1" # for tests, use the GPL-version of jsonschema format validators - they are faster jsonschema = { version = "*", extras = ["format"], optional=true }