From 2d664f7a8fbf7ba5e58ca3e521c3889f7d9b8aa9 Mon Sep 17 00:00:00 2001 From: Peguen <73380451+Peguen@users.noreply.github.com> Date: Mon, 19 Aug 2024 15:55:11 +0200 Subject: [PATCH] Update macos python version to 3.12.5 --- .github/workflows/build-macos.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index e0916fdc7b..4db937f65a 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -18,8 +18,14 @@ jobs: run: | echo Killing XProtect.; sudo pkill -9 XProtect >/dev/null || true; + - name: Upgrade Python version + uses: actions/setup-python@v4 + id: cp3125 + with: + python-version: '3.12.5' + - name: Install Dependencies - run: brew install qt ninja doxygen graphviz protobuf hdf5@1.10 pkg-config capnp || brew link --overwrite python@3.12 + run: brew install qt ninja doxygen graphviz protobuf hdf5@1.10 pkg-config capnp - name: Checkout uses: actions/checkout@v4