File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 14
14
test :
15
15
runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@v4
18
18
with :
19
19
submodules : " recursive"
20
20
56
56
os : ["macos-latest", "ubuntu-latest", "windows-latest"]
57
57
steps :
58
58
- name : " Checkout repo"
59
- uses : actions/checkout@v3
59
+ uses : actions/checkout@v4
60
60
with :
61
61
submodules : " recursive"
62
62
68
68
shell : bash
69
69
70
70
- name : " Upload wheel as artifact"
71
- uses : actions/upload-artifact@v3
71
+ uses : actions/upload-artifact@v4
72
72
with :
73
73
name : artifact-${{ matrix.os }}-wheel
74
74
path : ./wheelhouse/*.whl
79
79
needs : test
80
80
runs-on : ubuntu-latest
81
81
steps :
82
- - uses : actions/checkout@v3
82
+ - uses : actions/checkout@v4
83
83
with :
84
84
submodules : " recursive"
85
85
89
89
- name : Check metadata
90
90
run : pipx run twine check dist/*
91
91
92
- - uses : actions/upload-artifact@v3
92
+ - uses : actions/upload-artifact@v4
93
93
with :
94
94
name : artifact-source-dist
95
95
path : dist/*.tar.gz
99
99
needs : [make-wheels, make-sdist]
100
100
runs-on : ubuntu-latest
101
101
steps :
102
- - uses : actions/checkout@v3
102
+ - uses : actions/checkout@v4
103
103
with :
104
104
submodules : " recursive"
105
105
Original file line number Diff line number Diff line change 13
13
os : ["macos-latest", "ubuntu-latest", "windows-latest"]
14
14
steps :
15
15
- name : " Checkout repo"
16
- uses : actions/checkout@v3
16
+ uses : actions/checkout@v4
17
17
with :
18
18
submodules : " recursive"
19
19
25
25
shell : bash
26
26
27
27
- name : " Upload wheel as artifact"
28
- uses : actions/upload-artifact@v3
28
+ uses : actions/upload-artifact@v4
29
29
with :
30
30
name : artifact-${{ matrix.os }}-wheel
31
31
path : ./wheelhouse/*.whl
34
34
name : Make source distribution
35
35
runs-on : ubuntu-latest
36
36
steps :
37
- - uses : actions/checkout@v3
37
+ - uses : actions/checkout@v4
38
38
with :
39
39
submodules : " recursive"
40
40
44
44
- name : Check metadata
45
45
run : pipx run twine check dist/*
46
46
47
- - uses : actions/upload-artifact@v3
47
+ - uses : actions/upload-artifact@v4
48
48
with :
49
49
name : artifact-source-dist
50
50
path : dist/*.tar.gz
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ test-command = "pytest {project}/tests"
13
13
test-skip = [" *universal2:arm64" ]
14
14
build = [" cp39-*" , " cp310-*" , " cp311-*" ]
15
15
build-verbosity = 1
16
- test-requires = [" pytest, numpy" ]
16
+ test-requires = [" pytest" , " numpy>=1.21.2 " ]
17
17
18
18
[tool .cibuildwheel .macos ]
19
19
archs = [" universal2" ]
You can’t perform that action at this time.
0 commit comments