Skip to content

Commit f36c270

Browse files
Python 3.10 support (#978)
* Python 3.10 support * Fix name
1 parent e0b4c94 commit f36c270

File tree

1 file changed

+33
-48
lines changed

1 file changed

+33
-48
lines changed

azure-pipelines.yml

Lines changed: 33 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -14,51 +14,36 @@ resources:
1414
name: CadQuery/conda-packages
1515
endpoint: CadQuery
1616

17-
jobs:
18-
- template: conda-build.yml@templates
19-
parameters:
20-
name: Linux_38
21-
vmImage: 'ubuntu-18.04'
22-
py_maj: 3
23-
py_min: 8
24-
conda_bld: 3.21.6
25-
26-
- template: conda-build.yml@templates
27-
parameters:
28-
name: macOS_38
29-
vmImage: 'macOS-10.15'
30-
py_maj: 3
31-
py_min: 8
32-
conda_bld: 3.21.6
33-
34-
- template: conda-build.yml@templates
35-
parameters:
36-
name: Windows_38
37-
vmImage: 'vs2017-win2016'
38-
py_maj: 3
39-
py_min: 8
40-
conda_bld: 3.21.6
41-
42-
- template: conda-build.yml@templates
43-
parameters:
44-
name: Linux_39
45-
vmImage: 'ubuntu-18.04'
46-
py_maj: 3
47-
py_min: 9
48-
conda_bld: 3.21.6
49-
50-
- template: conda-build.yml@templates
51-
parameters:
52-
name: macOS_39
53-
vmImage: 'macOS-10.15'
54-
py_maj: 3
55-
py_min: 9
56-
conda_bld: 3.21.6
57-
58-
- template: conda-build.yml@templates
59-
parameters:
60-
name: Windows_39
61-
vmImage: 'vs2017-win2016'
62-
py_maj: 3
63-
py_min: 9
64-
conda_bld: 3.21.6
17+
parameters:
18+
- name: minor
19+
type: object
20+
default:
21+
- 8
22+
- 9
23+
- 10
24+
25+
jobs:
26+
- ${{ each minor in parameters.minor }}:
27+
- template: conda-build.yml@templates
28+
parameters:
29+
name: Linux
30+
vmImage: 'ubuntu-18.04'
31+
py_maj: 3
32+
py_min: ${{minor}}
33+
conda_bld: 3.21.6
34+
35+
- template: conda-build.yml@templates
36+
parameters:
37+
name: macOS
38+
vmImage: 'macOS-10.15'
39+
py_maj: 3
40+
py_min: ${{minor}}
41+
conda_bld: 3.21.6
42+
43+
- template: conda-build.yml@templates
44+
parameters:
45+
name: Windows
46+
vmImage: 'vs2017-win2016'
47+
py_maj: 3
48+
py_min: ${{minor}}
49+
conda_bld: 3.21.6

0 commit comments

Comments
 (0)