From 5669bdd8a279ad11bd5197c2e13d2ae3328509fc Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Fri, 16 Sep 2022 09:36:26 -0400 Subject: [PATCH] Agent: Add a comment about locking bcrypt and cryptography --- monkey/infection_monkey/Pipfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/monkey/infection_monkey/Pipfile b/monkey/infection_monkey/Pipfile index 7f369e9bf..1c34cd6c9 100644 --- a/monkey/infection_monkey/Pipfile +++ b/monkey/infection_monkey/Pipfile @@ -27,6 +27,9 @@ paramiko = {editable = true, ref = "2.10.3.dev1", git = "https://github.com/Vaka pypubsub = "*" pydantic = "*" egg-timer = "*" +# These are the last versions of bcrypt and cryptography that have +# manylinux2010 wheels. We need these locked to 3.2.2 and 37.0.4 respectively +# until we can upgrade our build environment. cryptography = "==37.0.4" bcrypt = "==3.2.2"