changeset 5461:cc157dcedba6

setup: drop pycrypto dependency - it has been unused since 31e119cb02ef
author Mads Kiilerich <madski@unity3d.com>
date Thu, 03 Sep 2015 17:41:05 +0200
parents 5be4d7d6ac05
children 4dfd7a135c04
files kallithea/lib/auth.py setup.py
diffstat 2 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/lib/auth.py	Thu Sep 03 17:34:19 2015 +0200
+++ b/kallithea/lib/auth.py	Thu Sep 03 17:41:05 2015 +0200
@@ -100,7 +100,7 @@
     def hash_string(cls, str_):
         """
         Cryptographic function used for password hashing based on pybcrypt
-        or pycrypto in windows
+        or Python's own OpenSSL wrapper on windows
 
         :param password: password to hash
         """
--- a/setup.py	Thu Sep 03 17:34:19 2015 +0200
+++ b/setup.py	Thu Sep 03 17:41:05 2015 +0200
@@ -52,7 +52,6 @@
     "markdown==2.2.1",
     "docutils>=0.8.1,<=0.11",
     "mock",
-    "pycrypto>=2.6.0,<=2.6.1",
     "URLObject==2.3.4",
     "Routes==1.13",
     "dulwich>=0.9.9,<=0.9.9",