From bc21b4c422164bbdd106abf07b61244641430354 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Sun, 25 Jan 2026 11:44:34 -0800 Subject: [PATCH] Pin LLVM to version 20 for llvmlite compatibility llvmlite only supports LLVM up to version 20, but brew install llvm installs version 21. Update macOS runners to install llvm@20 specifically. Co-Authored-By: Claude Sonnet 4.5 (1M context) --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b212ac55..987cfb74 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,9 +41,9 @@ jobs: - name: Install LLVM (macOS) if: matrix.platform == 'macos-latest' || matrix.platform == 'macos-15-intel' run: | - brew install llvm - echo "$(brew --prefix llvm)/bin" >> $GITHUB_PATH - echo "LLVM_CONFIG=$(brew --prefix llvm)/bin/llvm-config" >> $GITHUB_ENV + brew install llvm@20 + echo "$(brew --prefix llvm@20)/bin" >> $GITHUB_PATH + echo "LLVM_CONFIG=$(brew --prefix llvm@20)/bin/llvm-config" >> $GITHUB_ENV - name: Setup Python uses: actions/setup-python@v5