diff --git a/adot/python/src/template.yml b/adot/python/src/template.yml index d42b73ff1..216b32039 100644 --- a/adot/python/src/template.yml +++ b/adot/python/src/template.yml @@ -18,6 +18,8 @@ Resources: - python3.9 - python3.10 - python3.11 + - python3.12 + - python3.13 Metadata: BuildMethod: makefile api: diff --git a/python/integration-tests/aws-sdk/wrapper/main.tf b/python/integration-tests/aws-sdk/wrapper/main.tf index 21d14d556..8d3ad1910 100644 --- a/python/integration-tests/aws-sdk/wrapper/main.tf +++ b/python/integration-tests/aws-sdk/wrapper/main.tf @@ -5,7 +5,7 @@ locals { resource "aws_lambda_layer_version" "sdk_layer" { layer_name = var.sdk_layer_name filename = "${path.module}/../../../../opentelemetry-lambda/python/src/build/layer.zip" - compatible_runtimes = ["python3.10", "python3.11"] + compatible_runtimes = ["python3.10", "python3.11", "python3.12", "python3.13"] license_info = "Apache-2.0" source_code_hash = filebase64sha256("${path.module}/../../../../opentelemetry-lambda/python/src/build/layer.zip") }