We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1d9660 commit dd82787Copy full SHA for dd82787
.github/workflows/release-python.yml
@@ -22,8 +22,11 @@ jobs:
22
container:
23
image: ghcr.io/linux-nvme/debian.python:latest
24
steps:
25
- - name: Install packaging via pipx
26
- run: pipx install packaging
+ - name: Install Python (if missing)
+ 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
30
31
- uses: actions/checkout@v4
32
0 commit comments