From bf218e99585c90b6332ead07af456eed3149d0d8 Mon Sep 17 00:00:00 2001 From: Anton Pirker Date: Fri, 20 Oct 2023 09:21:15 +0200 Subject: [PATCH] Update compatible runtimes for AWS Lambda layer (#2453) Set the compatible runtimes in the Sentry AWS Lambda Layer to also include Python 3.9, 3.10, and 3.11. Older versions do not work in Lambda Functions because the Lambda function runtime uses versions of OpenSSL that we do not support. --- .craft.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.craft.yml b/.craft.yml index 43bbfdd7bd..3f8433d9fc 100644 --- a/.craft.yml +++ b/.craft.yml @@ -14,14 +14,13 @@ targets: - name: python versions: # The number of versions must be, at most, the maximum number of - # runtimes AWS Lambda permits for a layer. + # runtimes AWS Lambda permits for a layer (currently 15). # On the other hand, AWS Lambda does not support every Python runtime. # The supported runtimes are available in the following link: # https://docs.aws.amazon.com/lambda/latest/dg/lambda-python.html - - python3.6 - - python3.7 - - python3.8 - python3.9 + - python3.10 + - python3.11 license: MIT - name: sentry-pypi internalPypiRepo: getsentry/pypi