Skip to content

Commit 49c18ce

Browse files
committed
fix: specify llvm15
1 parent 3111180 commit 49c18ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
4444
- name: Build CPP extension
4545
run: |
46-
export CC=$(brew --prefix llvm)/bin/clang
47-
export CXX=$(brew --prefix llvm)/bin/clang++
46+
export CC=$(brew --prefix llvm@15)/bin/clang
47+
export CXX=$(brew --prefix llvm@15)/bin/clang++
4848
python setup.py build
4949
find build/ -name "_C*.so" -exec cp {} ./torchlpc/ \;
5050
- name: Test with pytest

0 commit comments

Comments
 (0)