Skip to content

Commit 3211841

Browse files
committed
Fixing build
1 parent 62df2a9 commit 3211841

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_wheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
platform: [windows-latest, ubuntu-latest, macos-13, macos-14]
14+
platform: [windows-2022, ubuntu-latest, macos-13, macos-14]
1515
env:
1616
CIBW_SKIP: 'pp*'
1717
CIBW_ARCHS: 'auto64'
@@ -34,7 +34,7 @@ jobs:
3434
- name: Install OMP (MacOS Intel)
3535
if: matrix.platform == 'macos-13'
3636
run: |
37-
brew install llvm libomp
37+
brew install llvm@20 libomp
3838
echo "export CC=/usr/local/opt/llvm/bin/clang" >> ~/.bashrc
3939
echo "export CXX=/usr/local/opt/llvm/bin/clang++" >> ~/.bashrc
4040
echo "export CFLAGS=\"$CFLAGS -I/usr/local/opt/libomp/include\"" >> ~/.bashrc
@@ -44,7 +44,7 @@ jobs:
4444
- name: Install OMP (MacOS M1)
4545
if: matrix.platform == 'macos-14'
4646
run: |
47-
brew install llvm libomp
47+
brew install llvm@20 libomp
4848
echo "export CC=/opt/homebrew/opt/llvm/bin/clang" >> ~/.bashrc
4949
echo "export CXX=/opt/homebrew/opt/llvm/bin/clang++" >> ~/.bashrc
5050
echo "export CFLAGS=\"$CFLAGS -I/opt/homebrew/opt/libomp/include\"" >> ~/.bashrc

0 commit comments

Comments
 (0)