File tree Expand file tree Collapse file tree 1 file changed +3
-26
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +3
-26
lines changed
Original file line number Diff line number Diff line change 20
20
21
21
jobs :
22
22
Build :
23
- runs-on : ${{ matrix.os }}
23
+ runs-on : macos-11
24
24
defaults :
25
25
run :
26
26
shell : bash
27
27
strategy :
28
28
fail-fast : false
29
29
matrix :
30
- os : [macos-10.15, macos-11]
31
30
python-version : ['3.6']
32
31
platform : [x64]
33
32
with_contrib : [0, 1]
34
33
without_gui : [0, 1]
35
34
build_sdist : [0]
36
- exclude :
37
- - os : macos-10.15
38
- python-version : ' 3.10'
39
- - os : macos-11
40
- python-version : ' 3.6'
41
- - os : macos-11
42
- python-version : ' 3.7'
43
- - os : macos-11
44
- python-version : ' 3.8'
45
- - os : macos-11
46
- python-version : ' 3.9'
47
35
env :
48
36
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
49
37
REPO_DIR : .
62
50
SDIST : ${{ matrix.build_sdist || 0 }}
63
51
ENABLE_HEADLESS : ${{ matrix.without_gui }}
64
52
ENABLE_CONTRIB : ${{ matrix.with_contrib }}
53
+ MACOSX_DEPLOYMENT_TARGET : 10.15
65
54
steps :
66
55
- name : Cleanup
67
56
run : find . -mindepth 1 -delete
@@ -108,30 +97,18 @@ jobs:
108
97
109
98
Test :
110
99
needs : [Build]
111
- runs-on : ${{ matrix.os }}
100
+ runs-on : macos-11
112
101
defaults :
113
102
run :
114
103
shell : bash
115
104
strategy :
116
105
fail-fast : false
117
106
matrix :
118
- os : [macos-10.15, macos-11]
119
107
python-version : ['3.6', '3.7', '3.8', '3.9', '3.10']
120
108
platform : [x64]
121
109
with_contrib : [0, 1]
122
110
without_gui : [0, 1]
123
111
build_sdist : [0]
124
- exclude :
125
- - os : macos-10.15
126
- python-version : ' 3.10'
127
- - os : macos-11
128
- python-version : ' 3.6'
129
- - os : macos-11
130
- python-version : ' 3.7'
131
- - os : macos-11
132
- python-version : ' 3.8'
133
- - os : macos-11
134
- python-version : ' 3.9'
135
112
env :
136
113
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
137
114
MB_PYTHON_VERSION : ${{ matrix.python-version }}
You can’t perform that action at this time.
0 commit comments