Skip to content

Commit bf218e9

Browse files
authored
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.
1 parent 4d10edf commit bf218e9

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.craft.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ targets:
1414
- name: python
1515
versions:
1616
# The number of versions must be, at most, the maximum number of
17-
# runtimes AWS Lambda permits for a layer.
17+
# runtimes AWS Lambda permits for a layer (currently 15).
1818
# On the other hand, AWS Lambda does not support every Python runtime.
1919
# The supported runtimes are available in the following link:
2020
# https://docs.aws.amazon.com/lambda/latest/dg/lambda-python.html
21-
- python3.6
22-
- python3.7
23-
- python3.8
2421
- python3.9
22+
- python3.10
23+
- python3.11
2524
license: MIT
2625
- name: sentry-pypi
2726
internalPypiRepo: getsentry/pypi

0 commit comments

Comments
 (0)