2021-01-21 22:26:43 +00:00
|
|
|
From 7b73bdeda54b9c944774452bfa3b3c1f2733b3f0 Mon Sep 17 00:00:00 2001
|
2020-10-15 16:29:51 +00:00
|
|
|
From: Petr Lautrbach <plautrba@redhat.com>
|
|
|
|
Date: Thu, 2 Apr 2020 16:06:14 +0200
|
2021-01-21 22:26:43 +00:00
|
|
|
Subject: [PATCH 2/2] Require networkx on package level
|
2020-10-15 16:29:51 +00:00
|
|
|
|
|
|
|
It allows us to ship python3-setools without dependency on python3-networkx
|
|
|
|
---
|
|
|
|
setup.py | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/setup.py b/setup.py
|
2021-01-21 22:26:43 +00:00
|
|
|
index c593b786cc61..0551811e3fd1 100644
|
2020-10-15 16:29:51 +00:00
|
|
|
--- a/setup.py
|
|
|
|
+++ b/setup.py
|
2021-01-21 22:26:43 +00:00
|
|
|
@@ -163,5 +163,5 @@ setup(name='setools',
|
2020-10-15 16:29:51 +00:00
|
|
|
# setup also requires libsepol and libselinux
|
|
|
|
# C libraries and headers to compile.
|
|
|
|
setup_requires=['setuptools', 'Cython>=0.27'],
|
|
|
|
- install_requires=['setuptools', 'networkx>=2.0']
|
|
|
|
+ install_requires=['setuptools']
|
|
|
|
)
|
|
|
|
--
|
2021-01-21 22:26:43 +00:00
|
|
|
2.30.0
|
2020-10-15 16:29:51 +00:00
|
|
|
|