Skip to content

Commit aa36f60

Browse files
committed
Use specific python interpreter for pip
1 parent 6269956 commit aa36f60

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release-binaries.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,7 @@ jobs:
229229
230230
# Setup python.
231231
- name: Setup Python
232+
id: setup-python
232233
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
233234
with:
234235
python-version: '3.13'
@@ -321,7 +322,7 @@ jobs:
321322
- name: Install python dependencies
322323
shell: bash
323324
run: |
324-
pip install packaging psutil
325+
pip --python ${{ steps.setup-python.outputs.python-path }} install packaging psutil
325326
326327
- name: Configure
327328
id: build

0 commit comments

Comments
 (0)