blob: 90adee050a11625126bbba1f351275c565381c84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
From ec0c8b368fd560b319c6603f35dda803fe4b2e99 Mon Sep 17 00:00:00 2001
From: Dominik Rumian <drumian@redhat.com>
Date: Tue, 24 Aug 2021 12:51:17 +0200
Subject: [PATCH] [PATCH] remove koji and rpm-py-installer from requires
Signed-off-by: Dominik Rumian <drumian@redhat.com>
---
setup.py | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/setup.py b/setup.py
index 9c6d881..8c92aae 100755
--- a/setup.py
+++ b/setup.py
@@ -34,6 +34,11 @@ install_requires, dep_links = read_requirements(pypi_txt)
tests_require, test_dep_links = read_requirements(test_pypi_txt)
dep_links += test_dep_links
+install_requires = [
+ item for item in install_requires
+ if not item.startswith('koji') and not item.startswith('rpm-py-installer')
+]
+
readme_rst = os.path.join(setup_py_path, 'README.rst')
with open(readme_rst, 'r') as readme:
long_description = readme.read().rstrip()
--
2.31.1
|