From 7fa2536cf6ea057f93ace7f1c3c898555e832560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Guzm=C3=A1n?= Date: Tue, 13 Aug 2024 23:56:52 -0600 Subject: [PATCH] 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 --- .github/workflows/meson.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/meson.yml b/.github/workflows/meson.yml index 5226fff2..2da4d483 100644 --- a/.github/workflows/meson.yml +++ b/.github/workflows/meson.yml @@ -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}}