@@ -80,15 +80,15 @@ jobs:
80
80
condition : true
81
81
strategy :
82
82
matrix :
83
- Python39Mac :
84
- imageName : ' macos-latest'
85
- python.version : ' 3.9'
83
+ # Python39Mac:
84
+ # imageName: 'macos-latest'
85
+ # python.version: '3.9'
86
86
Python39Windows :
87
87
imageName : ' windows-latest'
88
88
python.version : ' 3.9'
89
- Python39Linux :
90
- imageName : ' ubuntu-22.04'
91
- python.version : ' 3.9'
89
+ # Python39Linux:
90
+ # imageName: 'ubuntu-22.04'
91
+ # python.version: '3.9'
92
92
93
93
maxParallel : 4
94
94
pool :
@@ -114,16 +114,13 @@ jobs:
114
114
python -m pip build --wheel
115
115
condition: eq( variables['Agent.OS'], 'Windows_NT')
116
116
displayName: 'Build wheel (Windows)'
117
- #- script: |
118
- # python -m pip install --upgrade pip build wheel setuptools
119
- # python -m build --wheel
120
- # condition: eq( variables['Agent.OS'], 'Linux')
121
- # displayName: 'Build wheel (Linux)'
122
- #- script: |
123
- # python -m pip install --upgrade pip build wheel setuptools
124
- # python -m build --wheel
125
- # condition: eq(variables['Agent.OS'], 'Darwin')
126
- # displayName: 'Build wheel (Mac)'
127
-
128
-
129
-
117
+ - script : |
118
+ python -m pip install --upgrade pip build wheel setuptools
119
+ python -m build --wheel
120
+ condition: eq( variables['Agent.OS'], 'Linux')
121
+ displayName: 'Build wheel (Linux)'
122
+ - script : |
123
+ python -m pip install --upgrade pip build wheel setuptools
124
+ python -m build --wheel
125
+ condition: eq(variables['Agent.OS'], 'Darwin')
126
+ displayName: 'Build wheel (Mac)'
0 commit comments