Skip to content

Commit d2ccac0

Browse files
authored
Add support for Python 3.12 and 3.13 to AWS Lambda integration. (#3965)
Its time to add support for newer versions of Python to our AWS Lambda integration. Fixes #3946
1 parent 4ae94a5 commit d2ccac0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.craft.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ targets:
2525
- python3.9
2626
- python3.10
2727
- python3.11
28+
- python3.12
29+
- python3.13
2830
license: MIT
2931
- name: sentry-pypi
3032
internalPypiRepo: getsentry/pypi

tests/integrations/aws_lambda/test_aws.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,9 @@
3838

3939
RUNTIMES_TO_TEST = [
4040
"python3.8",
41-
"python3.9",
4241
"python3.10",
43-
"python3.11",
4442
"python3.12",
43+
"python3.13",
4544
]
4645

4746
LAMBDA_PRELUDE = """

0 commit comments

Comments
 (0)