Skip to content

Commit

Permalink
macos-12 & 💅
Browse files Browse the repository at this point in the history
  • Loading branch information
vovaf709 committed Aug 2, 2024
1 parent cf9c7d1 commit fa5b230
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
needs: [ check_version ]
strategy:
matrix:
os: [ ubuntu-22.04, windows-2019, macOS-14 ]
os: [ ubuntu-22.04, windows-2019, macOS-12 ]

name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.17.0
- name: Install gcc for mac
if: matrix.os == 'macOS-14'
if: matrix.os == 'macOS-12'
run: |
brew install llvm libomp
echo $PATH
Expand Down
3 changes: 2 additions & 1 deletion imops/src/_measure.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@

import numpy as np

cimport numpy as np
cimport cython
cimport numpy as np

from cython.parallel import prange


ctypedef cython.floating FLOAT

ctypedef fused LABEL:
Expand Down

0 comments on commit fa5b230

Please sign in to comment.