Skip to content

Commit dd82787

Browse files
committed
build: install packaging globally
The pipx install step is not working. Signed-off-by: Daniel Wagner <wagi@kernel.org>
1 parent e1d9660 commit dd82787

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release-python.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,11 @@ jobs:
2222
container:
2323
image: ghcr.io/linux-nvme/debian.python:latest
2424
steps:
25-
- name: Install packaging via pipx
26-
run: pipx install packaging
25+
- name: Install Python (if missing)
26+
run: apt-get update && apt-get install -y python3 python3-pip
27+
28+
- name: Update python dependencies
29+
run: python3 -m pip install -U packaging --break-system-packages
2730

2831
- uses: actions/checkout@v4
2932

0 commit comments

Comments
 (0)