Skip to content

Commit ea48bee

Browse files
committed
Switch to 3.12
1 parent 6bc5e47 commit ea48bee

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.diploi/helm/app.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ spec:
4141
command: ["/bin/sh", "-c"]
4242
args:
4343
- |
44-
uv python install {{ (.Values.envMap.PYTHON_VERSION).value | default "3.14" }}
44+
uv python install {{ (.Values.envMap.PYTHON_VERSION).value | default "3.12" }}
4545
uv venv .venv
4646
if [ -f pyproject.toml ]; then
4747
uv pip install -e .
@@ -50,7 +50,7 @@ spec:
5050
fi
5151
env:
5252
- name: UV_PYTHON
53-
value: {{ (.Values.envMap.PYTHON_VERSION).value | default "3.14" }}
53+
value: {{ (.Values.envMap.PYTHON_VERSION).value | default "3.12" }}
5454
- name: UV_PYTHON_INSTALL_DIR
5555
value: /app{{ .Values.folder }}/.python
5656
workingDir: /app{{ .Values.folder }}
@@ -83,7 +83,7 @@ spec:
8383
{{- end }}
8484
env:
8585
- name: UV_PYTHON
86-
value: {{ (.Values.envMap.PYTHON_VERSION).value | default "3.14" }}
86+
value: {{ (.Values.envMap.PYTHON_VERSION).value | default "3.12" }}
8787
- name: UV_PYTHON_INSTALL_DIR
8888
value: /app{{ .Values.folder }}/.python
8989
{{- range .Values.env }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM ghcr.io/astral-sh/uv:bookworm-slim
44
ARG FOLDER=/app
55

66
# This will be set by the GitHub action if "PYTHON_VERSION" ENV is set in diploi.yaml
7-
ARG PYTHON_VERSION=3.14
7+
ARG PYTHON_VERSION=3.12
88

99
COPY --chown=1000:1000 . /app
1010
WORKDIR ${FOLDER}

0 commit comments

Comments
 (0)