ci: Use setup-python action on macOS

This commit is contained in:
Matt Borgerson 2024-06-14 19:55:29 -07:00 committed by mborgerson
parent be31d931f7
commit 4af86b5f61

View File

@ -271,6 +271,9 @@ jobs:
name: src.tar.gz
- name: Extract source package
run: tar xf src.tar.gz
- uses: actions/setup-python@v5.1.0
with:
python-version: '3.12'
- name: Install dependencies
run: |
export HOMEBREW_NO_AUTO_UPDATE=1
@ -281,7 +284,7 @@ jobs:
dylibbundler \
pkg-config \
ninja
python3 -m pip install pyyaml requests
pip install pyyaml requests
- name: Initialize compiler, library cache
id: cache
uses: actions/cache@v4