From 3d3ff3861ea3029ff07ec8b2713f91dfc34f22df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BC=D1=98=D0=B0=D0=BD=20=D0=93=D0=B5=D0=BE?= =?UTF-8?q?=D1=80=D0=B3=D0=B8=D0=B5=D0=B2=D1=81=D0=BA=D0=B8?= Date: Wed, 13 May 2020 04:41:25 +0200 Subject: [PATCH] fix issue #101 https://github.com/Netflix/bless/issues/101 wrong marshmallow was installed in the lambda zip file --- lambda_compile.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lambda_compile.sh b/lambda_compile.sh index dd35d836..493c0f83 100755 --- a/lambda_compile.sh +++ b/lambda_compile.sh @@ -3,6 +3,7 @@ yum install -y python37 python3.7 -m venv /tmp/venv /tmp/venv/bin/pip install --upgrade pip setuptools +/tmp/venv/bin/pip install -r requirements.txt /tmp/venv/bin/pip install -e . cp -r /tmp/venv/lib/python3.7/site-packages/. ./aws_lambda_libs cp -r /tmp/venv/lib64/python3.7/site-packages/. ./aws_lambda_libs