From 330329c087b81f9ce7346d6b7030e07d38b0ea53 Mon Sep 17 00:00:00 2001 From: Marcelo R Costa Date: Tue, 7 Apr 2020 20:38:43 -0500 Subject: [PATCH] fix(qa): Pin cryptography-2.8 to avoid bug with openssl (#768) * fix(qa): Pin cryptography-2.8 to avoid bug with openssl * set specific version for cryptography: 2.8 * pinning version on the correct file * pinning 2.8 Co-authored-by: Marcelo Costa --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index f41e9a8a5..1e8c195e7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ cached_property==1.5.1 cdislogging>=1.0.0<2.0.0 cdiserrors==0.1.2 cdispyutils==1.0.3 -cryptography>=2.1.2<3.0 +cryptography==2.8 datamodelutils==0.4.5 Flask==1.1.1 Flask-CORS==3.0.3 diff --git a/setup.py b/setup.py index 004d21c1f..1a979cc0f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ "botocore>=1.7,<1.9.0", "boto3>=1.5,<1.6", "cached_property>=1.5.1,<2.0.0", - "cryptography>=2.1.2<3.0", + "cryptography==2.8", "flask-restful>=0.3.6,<1.0.0", "Flask>=1.1.1,<2.0.0", "Flask-CORS>=3.0.3,<4.0.0",