diff options
Diffstat (limited to 'remove-koji-and-rpm-py-installer-from-requires.patch')
-rw-r--r-- | remove-koji-and-rpm-py-installer-from-requires.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/remove-koji-and-rpm-py-installer-from-requires.patch b/remove-koji-and-rpm-py-installer-from-requires.patch new file mode 100644 index 0000000..90adee0 --- /dev/null +++ b/remove-koji-and-rpm-py-installer-from-requires.patch @@ -0,0 +1,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 + |