Skip to content

Commit 2a4222f

Browse files
committed
pdm
1 parent d9d75f9 commit 2a4222f

File tree

4 files changed

+452
-837
lines changed

4 files changed

+452
-837
lines changed

.github/workflows/backend-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
python-version: "3.11.6"
2222
- run: |
23-
pip install pdm==2.21.0
23+
pip install pdm==2.21.0 uv==0.5.5
2424
pdm config use_uv true
2525
2626
- name: Cache PDM

.github/workflows/backend-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
python-version: "3.11.6"
4242
- run: |
43-
pip install pdm==2.21.0 codecov
43+
pip install pdm==2.21.0 uv==0.5.5 codecov
4444
pdm config use_uv true
4545
4646
- name: Cache PDM

Dockerfile.python.local

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ ARG FUNCTION_DIR
99
RUN mkdir -p ${FUNCTION_DIR}
1010
WORKDIR ${FUNCTION_DIR}
1111

12-
RUN pip install pdm==2.12.4
12+
RUN pip install pdm==2.21.0 uv==0.5.5
13+
RUN pdm config use_uv true
1314

1415
COPY pyproject.toml pdm.lock ${FUNCTION_DIR}
1516

0 commit comments

Comments
 (0)