Skip to content

Commit 793ba52

Browse files
authored
chore: add support for Python 3.14 (#2056)
1 parent eaf7956 commit 793ba52

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/ci-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
matrix:
3232
# If you add a python version here, please make sure that the collector/Makefile publish and publish-layer targets
3333
# get updated as well
34-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
34+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
3535

3636
steps:
3737
- name: Checkout this repo

python/sample-apps/template.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,6 @@ Resources:
4747
- python3.11
4848
- python3.12
4949
- python3.13
50+
- python3.14
5051
Metadata:
5152
BuildMethod: makefile

python/src/otel/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG runtime=python3.13
1+
ARG runtime=python3.14
22

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

python/src/template.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ Resources:
1919
- python3.11
2020
- python3.12
2121
- python3.13
22+
- python3.14
2223
Metadata:
2324
BuildMethod: makefile

python/src/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
33
; opentelemetry-instrumentation-aws-lambda
4-
py3{9,10,11,12}-test-instrumentation-aws-lambda
4+
py3{9,10,11,12,13,14}-test-instrumentation-aws-lambda
55

66
minversion = 3.9
77

0 commit comments

Comments
 (0)