File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 6
6
tags :
7
7
- ' *'
8
8
env :
9
- CIBW_SKIP : pp* *-musllinux*
9
+ CIBW_SKIP : pp* *-musllinux* cp36* cp37*
10
10
11
11
jobs :
12
12
build_wheels :
13
13
name : Build wheels on ${{matrix.arch}} for ${{ matrix.os }}
14
14
runs-on : ${{ matrix.os }}
15
15
strategy :
16
16
matrix :
17
- os : [ubuntu-latest, windows-2019 , macos-latest]
17
+ os : [ubuntu-latest, windows-latest , macos-latest]
18
18
arch : [auto]
19
19
include :
20
20
- os : ubuntu-latest
@@ -28,13 +28,16 @@ jobs:
28
28
uses : docker/setup-qemu-action@v1
29
29
30
30
- name : Build wheels
31
- uses : joerick/cibuildwheel@v2.19.1
31
+ uses : joerick/cibuildwheel@v2.22.0
32
32
# to supply options, put them in 'env', like:
33
33
env :
34
34
CIBW_ARCHS_LINUX : ${{matrix.arch}}
35
35
CIBW_BEFORE_BUILD : pip install numpy setuptools wheel cython
36
36
CIBW_ARCHS_MACOS : " x86_64 arm64"
37
37
38
- - uses : actions/upload-artifact@v2
38
+ - name : Upload built wheels
39
+ uses : actions/upload-artifact@v4
39
40
with :
41
+ name : built-wheels-${{ matrix.os }}-${{ matrix.arch }}
40
42
path : ./wheelhouse/*.whl
43
+ if-no-files-found : warn
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cimport numpy as numpy
10
10
11
11
import numpy as np
12
12
13
- __VERSION__ = ' 1.2.3 '
13
+ __VERSION__ = ' 1.2.5 '
14
14
__version__ = __VERSION__
15
15
16
16
FPZ_ERROR_STRINGS = [
You can’t perform that action at this time.
0 commit comments