From 9fc6792caeb4c9873c02482920e60a968887c1da Mon Sep 17 00:00:00 2001 From: Sam <16504129+sagudev@users.noreply.github.com> Date: Sat, 25 Oct 2025 07:21:42 +0200 Subject: [PATCH] CI: Always use python3.13 Latest mac runners have python 3.14, which does not work with SM. Signed-off-by: Sam <16504129+sagudev@users.noreply.github.com> --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 41dc932c5ed..8a14683c81b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,11 +35,11 @@ jobs: SCCACHE_GHA_ENABLED: "true" steps: - uses: actions/checkout@v4 + - uses: actions/setup-python@v6 + with: + python-version: '3.13' - name: Install deps run: | - # Unlink and re-link to prevent errors when github mac runner images - # https://github.com/actions/setup-python/issues/577 - brew list -1 | grep python | while read formula; do brew unlink $formula; brew link --overwrite $formula; done brew install llvm yasm - uses: dtolnay/rust-toolchain@master id: toolchain