Skip to content

Commit afe22fd

Browse files
committed
update pdm
1 parent f628a6f commit afe22fd

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/backend-checks.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
- uses: actions/setup-python@v5
2020
with:
2121
python-version: "3.11.6"
22-
- run: pip install pdm==2.10.4
22+
- run: |
23+
pip install pdm==2.21.0
24+
pdm config use_uv true
2325
2426
- name: Cache PDM
2527
uses: actions/cache@v4

.github/workflows/backend-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ jobs:
3939
- uses: actions/setup-python@v5
4040
with:
4141
python-version: "3.11.6"
42-
- run: pip install pdm==2.10.4 codecov
42+
- run: |
43+
pip install pdm==2.21.0 codecov
44+
pdm config use_uv true
4345
4446
- name: Cache PDM
4547
uses: actions/cache@v4

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN apt-get update -y && apt-get install -y \
1717

1818
ENV LIBRARY_PATH=/lib:/usr/lib
1919

20-
RUN pip install pdm==2.10.4
20+
RUN pip install pdm==2.21.0
2121

2222
ARG TARGETPLATFORM
2323

0 commit comments

Comments
 (0)