cool-easter-32542
03/21/2024, 9:45 AMpython_awslambda(
name="awslambda",
handler="lambda.py:handler",
handler="my_lambda_function.py:lambda_handler",
dependencies=["!!3rdparty/python:poetry#boto3", "!!3rdparty/python:poetry#:boto3-stubs"],
)
Since I want to ignore a set of dependencies across all of the lambdas I was hoping to define the dependencies to ignore somewhere "globally" and reference them in each BUILD file. Is that an option?
pantsbuild/pants