Skip to content

Commit 3de1361

Browse files
authored
feat(python): add support for python 3.14 (#469)
1 parent 90c051a commit 3de1361

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.11", "3.12", "3.13"]
15+
python-version: ["3.11", "3.12", "3.13", "3.14"]
1616
steps:
1717
- uses: actions/checkout@v4
1818

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
test:
2626
strategy:
2727
matrix:
28-
version: ["3.11", "3.12", "3.13"]
28+
version: ["3.11", "3.12", "3.13", "3.14"]
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@v4
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v4
4949
- uses: actions/setup-python@v5
5050
with:
51-
python-version: 3.13
51+
python-version: 3.14
5252

5353
- name: Install poetry
5454
run: python -m pip install --upgrade poetry wheel

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PY_VERSION=3.13
1+
ARG PY_VERSION=3.14
22

33
#---------------------------------------------------------------------------------------
44
# Stage 1 → Builder image
@@ -20,7 +20,7 @@ RUN poetry build --format wheel
2020
#---------------------------------------------------------------------------------------
2121
FROM public.ecr.aws/lambda/python:$PY_VERSION AS lambda-env
2222

23-
ARG PY_VERSION=3.13
23+
ARG PY_VERSION=3.14
2424

2525
# Copy the built wheel from build stage, install, and clean up
2626
COPY --from=build-env /app/dist/*.whl ${LAMBDA_TASK_ROOT}/
@@ -44,7 +44,7 @@ FROM python:$PY_VERSION-alpine AS run-env
4444
ENV LC_ALL=C.UTF-8 \
4545
LANG=C.UTF-8
4646

47-
ARG PY_VERSION=3.13
47+
ARG PY_VERSION=3.14
4848
WORKDIR /app
4949

5050
# Copy wheel, install, and clean up in single layer

docs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PY_VERSION=3.13
1+
ARG PY_VERSION=3.14
22
FROM python:$PY_VERSION-slim
33

44
WORKDIR /docs

0 commit comments

Comments
 (0)