From 200369a8df5feb62a0fb2b795ca26439ad6fdad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 8 Apr 2025 11:22:47 +0200 Subject: [PATCH] Remove redundant runtime requirement on setuptools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The dependency was dropped in 99a1cf3b50cd8bf502b5070293c4d1bf792d1566 Signed-off-by: Miro HronĨok --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b2245ac..6e83f8e 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,7 @@ setup(name='setools', # setup also requires libsepol and libselinux # C libraries and headers to compile. setup_requires=['setuptools', 'Cython>=0.29.14'], - install_requires=['setuptools'], + install_requires=[], extras_require={ "analysis": ["networkx>=2.6", "pygraphviz"], "test": "tox"