From 0f15ff05ad687637323f51a58a8817647ba98f1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Jan=C3=9Fen?= Date: Fri, 9 May 2025 18:44:21 +0200 Subject: [PATCH] update requirement test --- .ci_support/check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci_support/check.py b/.ci_support/check.py index b4a36c54..7bab96df 100644 --- a/.ci_support/check.py +++ b/.ci_support/check.py @@ -5,7 +5,7 @@ with open("pyproject.toml", "r") as f: data = tomlkit.load(f) - lst = [] + lst = list(data['build-system']['requires']) for sub_lst in data["project"]["optional-dependencies"].values(): for el in sub_lst: lst.append(el)