summaryrefslogtreecommitdiff
path: root/dev-python/paramiko/files/paramiko-1.16.0-install_requires.patch
blob: fde5e11b19e525e5e2fdcd258e1f2f78379691e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 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: