gentoo/dev-python/paramiko/files/paramiko-1.16.0-install_requires.patch
Justin Lecher 702db76345
dev-python/paramiko: Fix broken whitespacing in version declaration of deps
* Add live version

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=575664

Package-Manager: portage-2.2.27
Signed-off-by: Justin Lecher <jlec@gentoo.org>
2016-02-26 09:36:52 +01:00

19 lines
438 B
Diff

setup.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/setup.py b/setup.py
index 629c28f..e987dc6 100644
--- a/setup.py
+++ b/setup.py
@@ -41,8 +41,8 @@ try:
from setuptools import setup
kw = {
'install_requires': [
- 'pycrypto >= 2.1, != 2.4',
- 'ecdsa >= 0.11',
+ 'pycrypto >=2.1,!=2.4',
+ 'ecdsa >=0.11',
],
}
except ImportError: