Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
matrix:
# If you add a python version here, please make sure that the collector/Makefile publish and publish-layer targets
# get updated as well
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- name: Checkout this repo
Expand Down
1 change: 1 addition & 0 deletions python/sample-apps/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,6 @@ Resources:
- python3.11
- python3.12
- python3.13
- python3.14
Metadata:
BuildMethod: makefile
2 changes: 1 addition & 1 deletion python/src/otel/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG runtime=python3.13
ARG runtime=python3.14

FROM public.ecr.aws/sam/build-${runtime}

Expand Down
1 change: 1 addition & 0 deletions python/src/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ Resources:
- python3.11
- python3.12
- python3.13
- python3.14
Metadata:
BuildMethod: makefile
2 changes: 1 addition & 1 deletion python/src/tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
; opentelemetry-instrumentation-aws-lambda
py3{9,10,11,12}-test-instrumentation-aws-lambda
py3{9,10,11,12,13,14}-test-instrumentation-aws-lambda

minversion = 3.9

Expand Down
Loading