Blame 0001-Drop-argparse-as-a-dependency.patch
|
 |
63422d7 |
From 1a60f395ec314b085bb12e132bf44c2ec8be1663 Mon Sep 17 00:00:00 2001
|
|
 |
63422d7 |
From: Neal Gompa <ngompa13@gmail.com>
|
|
 |
63422d7 |
Date: Sun, 4 Oct 2020 13:31:53 -0400
|
|
 |
63422d7 |
Subject: [PATCH] Drop argparse as a dependency
|
|
 |
63422d7 |
|
|
 |
63422d7 |
argparse has been part of the standard library since Python 2.7,
|
|
 |
63422d7 |
so there's no reason to declare this as a dependency, since it cannot
|
|
 |
63422d7 |
be satisfied by anyone running a modern Linux distribution including
|
|
 |
63422d7 |
a supported version of Python.
|
|
 |
63422d7 |
---
|
|
 |
63422d7 |
setup.py | 1 -
|
|
 |
63422d7 |
1 file changed, 1 deletion(-)
|
|
 |
63422d7 |
|
|
 |
63422d7 |
diff --git a/setup.py b/setup.py
|
|
 |
63422d7 |
index 9578589..032d205 100644
|
|
 |
63422d7 |
--- a/setup.py
|
|
 |
63422d7 |
+++ b/setup.py
|
|
 |
63422d7 |
@@ -24,7 +24,6 @@ setup(
|
|
 |
63422d7 |
long_description=open('README.md').read(),
|
|
 |
63422d7 |
#data_files=[('conf/manatools', ['XXX.yy',]), ],
|
|
 |
63422d7 |
install_requires=[
|
|
 |
63422d7 |
- "argparse",
|
|
 |
63422d7 |
"dbus-python",
|
|
 |
63422d7 |
"python-gettext",
|
|
 |
63422d7 |
"PyYAML",
|
|
 |
63422d7 |
--
|
|
 |
63422d7 |
2.26.2
|
|
 |
63422d7 |
|