I'm trying to use records for my Lambda function.
I added to my requirements.txt: records==0.5.0, but when I deploy to lambda, I get the following error:
Unable to import module 'app': No module named 'yaml'
I don't use yaml at all, and if I remove records, and use psycopg2 directly, the lambda function works. Is there any dependency missing that I need to add manually?
I'm trying to use records for my Lambda function. I added to my requirements.txt: records==0.5.0, but when I deploy to lambda, I get the following error: Unable to import module 'app': No module named 'yaml'
I don't use yaml at all, and if I remove records, and use psycopg2 directly, the lambda function works. Is there any dependency missing that I need to add manually?