Macos ci fix (#476)

fixes a CI issue in OSX due to
[PEP-668](https://peps.python.org/pep-0668/)
pip3 was used to install meson and ninja build, pipx is a drop in
replacement for this use case.
This commit is contained in:
Sébastien Rombauts 2024-08-15 14:51:00 +02:00 committed by GitHub
commit b737b3a202
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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}}