From ebe86a1b7ff0ec56e074cab5e5c208c1e178912c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Prchl=C3=ADk?= Date: Tue, 17 Sep 2024 10:22:45 +0200 Subject: [PATCH] Require setuptools tmt depends on `pkg_resources` package shipped by `setuptools`, but it seems `setuptools` may be missing in some virtualenvs, not being installed by default. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 30cc60acbb..daca9696c4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,7 @@ dependencies = [ # F39 / PyPI "requests>=2.25.1", # 2.28.2 / 2.31.0 "ruamel.yaml>=0.16.6", # 0.17.32 / 0.17.32 "urllib3>=1.26.5, <3.0", # 1.26.16 / 2.0.4 + "setuptools>=53.0.0", # 53.0.0 is the one available with RHEL9 "typing-extensions>=4.9.0; python_version < '3.13'", ]