From 4c4eba4b4650dd20e95cea280b1979811995bccc Mon Sep 17 00:00:00 2001 From: texastony <5892063+texastony@users.noreply.github.com> Date: Wed, 10 Aug 2022 15:10:23 -0700 Subject: [PATCH] DO NOT MERGE This PR is in response to [aws/aws-encryption-sdk/issues/307](https://github.com/aws/aws-encryption-sdk-cli/issues/307). It appears that Pyca's Cryptography-3.3.2 does not work in Python3.9 with our library. We need to dive deep on this, and determine which releases of Pyca's Cryptography do work with the latest ESDK-Python. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fab293c05..8d61101be 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ boto3>=1.10.0 -cryptography>=2.5.0 +cryptography==3.3.2 attrs>=17.4.0 wrapt>=1.10.11