This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 2 files changed +26
-11
lines changed
2 files changed +26
-11
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,19 @@ jobs:
48
48
PYTHON_VERSION : " 3.8.x"
49
49
PYTHON_ARCH : ' x64'
50
50
BITS : 64
51
+
52
+ - template : azure/windows.yml
53
+ parameters :
54
+ name : windows
55
+ vmImage : windows-2019
51
56
py_3.9_32 :
52
- PYTHON_VERSION : " 3.9.0-beta.4"
57
+ # Will use the latest up to 3.9.0
58
+ PYTHON_VERSION : " '3.9.0-alpha - 3.9.0'"
53
59
PYTHON_ARCH : " x86"
54
60
BITS : 32
55
61
py_3.9_64 :
56
- PYTHON_VERSION : " 3.9.0-beta.4"
62
+ # Will use the latest up to 3.9.0
63
+ PYTHON_VERSION : " '3.9.0-alpha - 3.9.0'"
57
64
PYTHON_ARCH : ' x64'
58
65
BITS : 64
59
66
90
97
py_3.8_64 :
91
98
MB_PYTHON_VERSION : " 3.8"
92
99
MB_ML_VER : " 2010"
100
+ py_3.9_32manylinux2010 :
101
+ MB_PYTHON_VERSION : " 3.9"
102
+ AZURE_PYTHON_VERSION : " 3.8"
103
+ PLAT : " i686"
104
+ MB_ML_VER : " 2010"
105
+ MB_ML_VER : " 1"
106
+ ENV_VARS_PATH : " env_vars_32.sh"
107
+ py_3.9_64manylinux2010 :
108
+ MB_PYTHON_VERSION : " 3.9"
109
+ AZURE_PYTHON_VERSION : " 3.8"
110
+ MB_ML_VER : " 2010"
111
+
93
112
# manylinux1 wheels
94
113
py_3.6_32manylinux1 :
95
114
MB_PYTHON_VERSION : " 3.6"
@@ -115,15 +134,6 @@ jobs:
115
134
py_3.8_64manylinux1 :
116
135
MB_PYTHON_VERSION : " 3.8"
117
136
MB_ML_VER : " 1"
118
- py_3.9_32manylinux1 :
119
- MB_PYTHON_VERSION : " 3.9"
120
- PLAT : " i686"
121
- MB_ML_VER : " 1"
122
- ENV_VARS_PATH : " env_vars_32.sh"
123
- py_3.9_64manylinux1 :
124
- MB_PYTHON_VERSION : " 3.9"
125
- MB_ML_VER : " 1"
126
-
127
137
128
138
- template : azure/posix.yml
129
139
parameters :
Original file line number Diff line number Diff line change 23
23
- checkout : self
24
24
submodules : true
25
25
26
+ - task : UsePythonVersion@0
27
+ inputs :
28
+ versionSpec : $[coalesce(variables.AZURE_PYTHON_VERSION, variables.MB_PYTHON_VERSION)]
29
+ displayName : Set python version
30
+
26
31
- bash : |
27
32
set -e
28
33
You can’t perform that action at this time.
0 commit comments