How to added the two version of layer to lambda one layer support only 3.8 and other one layer 3.7 version layer in python?
I need to import pandas
and google ads in the AWS lambda function. pandas
support only the 3.7 version and google ads support only the 3.8 version.
When I've given lambda 3.8 version google ads works and pandas
get an error and when I'm given lambda 3.7 version pandas
works and google ads get an error.
Please guide me on how to support the two versions of layers.