Skip to content

Commit 170361d

Browse files
chore(deps): update dependency python to 3.13
1 parent 8de4828 commit 170361d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/deploy-github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fetch-depth: 0
3030
- uses: actions/setup-python@v5
3131
with:
32-
python-version: 3.9
32+
python-version: 3.13
3333
- run: pip install \
3434
mkdocs-material
3535
# Build the mkdocs site

docs/mkdocs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
From python:3.12
1+
From python:3.13
22

33
COPY ./aep-docs /aep-docs/
44

inference/src/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9
1+
FROM python:3.13
22

33
WORKDIR /app
44

src/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Builder for Python 3.9
2-
FROM python:3.9 AS builder39
2+
FROM python:3.13 AS builder39
33

44
WORKDIR /app
55

@@ -13,7 +13,7 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
1313
COPY . /app
1414

1515
# Stage 2: Builder for Python 3.12
16-
FROM python:3.12 AS builder312
16+
FROM python:3.13 AS builder312
1717

1818
WORKDIR /app
1919

src/docker/dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12
1+
FROM python:3.13
22

33
WORKDIR /app
44

0 commit comments

Comments
 (0)