use pipx instead of pip3

pip3 have a warning regarding package breackage, as pip is used to install final applications pipx can be used as an drop-in replacement
This commit is contained in:
Jonathan Guzmán 2024-08-13 23:56:52 -06:00
parent bcb4c78fed
commit 7fa2536cf6
No known key found for this signature in database
GPG Key ID: C6548B8767F616FF

View File

@ -59,8 +59,8 @@ jobs:
run: echo "${{matrix.config.extra_path}}" >> $GITHUB_PATH
- name: install prerequisites
run: |
# asuming that python and pip are already installed
pip3 install meson ninja
# asuming that python and pipx are already installed
pipx install meson ninja
- name: setup meson project
env: # set proper compilers and linkers for meson
CC: ${{matrix.config.cc}}