diff options
author | Daniel Høyer Iversen <mail@dahoiv.net> | 2018-03-10T14·29+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-10T14·29+0100 |
commit | e8795ac1ae0d7919ed8162608dd97aec60fd6581 (patch) | |
tree | 7f1e3cb4eb1ee9683af397ee26b9a2362999d8bd | |
parent | dd0e9083172d1ee54eec167d342edb3b157aea4c (diff) | |
parent | 38aa6dc37e28d7a5ab1c91b120baa76dcb8dd754 (diff) |
Merge pull request #150 from balloob/patch-1
Depend on pycryptodome instead of pycrypto
-rw-r--r-- | requirements.txt | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/requirements.txt b/requirements.txt index f7d3e237ac67..dc83835dc08c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pycrypto==2.6.1 +pycryptodome==3.4.11 diff --git a/setup.py b/setup.py index f8d1f4cab807..c5c7e267d024 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ try: import pyaes dynamic_requires = ["pyaes==1.6.0"] except ImportError as e: - dynamic_requires = ['pycrypto==2.6.1'] + dynamic_requires = ['pycryptodome==3.4.11'] version = 0.6 |