Skip to content

Commit f775976

Browse files
committed
uv: break-system-packages
1 parent 198e45d commit f775976

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,13 @@ jobs:
124124
125125
- name: Install dependencies
126126
run: |
127-
uv pip install --upgrade --editable .
127+
uv pip install --system --upgrade --editable .
128128
129129
- name: Sanity checks
130130
run: PWNLIB_NOTERM=1 python -bb -c 'from pwn import *; print(pwnlib.term.term_mode)'
131131

132132
- name: Install documentation dependencies
133-
run: uv pip install -r docs/requirements.txt
133+
run: uv pip install --system -r docs/requirements.txt
134134

135135
- name: Disable yama ptrace_scope
136136
run: |
@@ -287,13 +287,13 @@ jobs:
287287
288288
- name: Install dependencies
289289
run: |
290-
uv pip install --upgrade --editable .
290+
uv pip install --system --upgrade --editable .
291291
292292
- name: Sanity checks
293293
run: PWNLIB_NOTERM=1 python -c 'from pwn import *; print(pwnlib.term.term_mode)'
294294

295295
- name: Install documentation dependencies
296-
run: uv pip install -r docs/requirements.txt
296+
run: uv pip install --system -r docs/requirements.txt
297297

298298
- name: Coverage Doctests (Android Only)
299299
run: |
@@ -324,10 +324,10 @@ jobs:
324324
325325
- name: Install dependencies
326326
run: |
327-
uv pip install --upgrade --editable .
327+
uv pip install --system --upgrade --editable .
328328
329329
- name: Install documentation dependencies
330-
run: uv pip install -r docs/requirements.txt
330+
run: uv pip install --system -r docs/requirements.txt
331331

332332
- name: Sanity checks
333333
run: |
@@ -359,7 +359,7 @@ jobs:
359359

360360
- name: Install coveralls
361361
run: |
362-
pip install --break-system-packages tomli coveralls || pip install tomli coveralls
362+
uv pip install --system tomli coveralls || pip install tomli coveralls
363363
364364
- name: Upload coverage to coveralls.io
365365
run: |

0 commit comments

Comments
 (0)