Skip to content

Commit ef4e870

Browse files
committed
Fix issue running uv sync
1 parent 08868d6 commit ef4e870

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.diploi/helm/app.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ spec:
4343
- |
4444
if [ -f pyproject.toml ]; then
4545
echo "Pyproject.toml found, installing dependencies with uv" && \
46+
uv venv .venv --clear && \
4647
uv sync --frozen --no-cache --link-mode=copy
4748
elif [ -f requirements.txt ]; then
4849
echo "requirements.txt found, installing dependencies with pip" && \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "hello-world"
33
version = "0.1.0"
44
description = "Add your description here"
55
readme = "README.md"
6-
requires-python = ">=3.13"
6+
requires-python = ">=3.11"
77
dependencies = [
88
"fastapi>=0.135.1",
99
"uvicorn>=0.40.0",

0 commit comments

Comments
 (0)