From 44cd81d6d1d2ee3c5f1ac1d49c45db60f376a48b Mon Sep 17 00:00:00 2001 From: Peter Hamilton Date: Mon, 15 Apr 2019 14:44:35 -0400 Subject: [PATCH] Update requirements and pin cryptography at 1.4+ This change updates requirements, pinning cryptography>=1.4. This is due to the use of kbkdf in the server's cryptography engine, which was not introduced until cryptography 1.4. Fixes #525 --- requirements.txt | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f1856aa..72cdc61 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -cryptography>=1.3 +cryptography>=1.4 enum34 requests six>=1.11.0 diff --git a/setup.py b/setup.py index ee9eb65..5f14f0d 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ setuptools.setup( install_requires=[ "cryptography", "enum34", + "requests", "six", "sqlalchemy" ],