This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree 2 files changed +11
-21
lines changed
2 files changed +11
-21
lines changed Original file line number Diff line number Diff line change 49
49
PYTHON_ARCH : ' x64'
50
50
BITS : 64
51
51
52
- - template : azure/windows.yml
53
- parameters :
54
- name : windows2019
55
- vmImage : windows-2019
56
- matrix :
57
- py_3.9_32 :
58
- # Will use the latest up to 3.9.0
59
- PYTHON_VERSION : " '3.9.0-alpha - 3.9.0'"
60
- PYTHON_ARCH : " x86"
61
- BITS : 32
62
- py_3.9_64 :
63
- # Will use the latest up to 3.9.0
64
- PYTHON_VERSION : " '3.9.0-alpha - 3.9.0'"
65
- PYTHON_ARCH : ' x64'
66
- BITS : 64
67
-
68
-
69
52
- template : azure/posix.yml
70
53
parameters :
71
54
name : linux
@@ -100,12 +83,14 @@ jobs:
100
83
MB_ML_VER : " 2010"
101
84
py_3.9_32manylinux2010 :
102
85
MB_PYTHON_VERSION : " 3.9"
86
+ # Comment this out when the image grows a CPython3.9
103
87
AZURE_PYTHON_VERSION : " 3.8"
104
88
PLAT : " i686"
105
89
MB_ML_VER : " 2010"
106
90
ENV_VARS_PATH : " env_vars_32.sh"
107
91
py_3.9_64manylinux2010 :
108
92
MB_PYTHON_VERSION : " 3.9"
93
+ # Comment this out when the image grows a CPython3.9
109
94
AZURE_PYTHON_VERSION : " 3.8"
110
95
MB_ML_VER : " 2010"
111
96
@@ -146,5 +131,3 @@ jobs:
146
131
MB_PYTHON_VERSION : " 3.7"
147
132
py_3.8_64 :
148
133
MB_PYTHON_VERSION : " 3.8"
149
- py_3.9_64 :
150
- MB_PYTHON_VERSION : " 3.9"
Original file line number Diff line number Diff line change 25
25
26
26
- task : UsePythonVersion@0
27
27
inputs :
28
- versionSpec : ${{ coalesce(variables.AZURE_PYTHON_VERSION, variables.MB_PYTHON_VERSION) }}
29
- displayName : Set python version
28
+ versionSpec : $(AZURE_PYTHON_VERSION)
29
+ displayName : Set python version from AZURE
30
+ condition : ne( coalesce (variables['AZURE_PYTHON_VERSION'], 'NONE'), 'NONE')
31
+
32
+ - task : UsePythonVersion@0
33
+ inputs :
34
+ versionSpec : $(MB_PYTHON_VERSION)
35
+ displayName : Set python version from MB
36
+ condition : eq( coalesce (variables['AZURE_PYTHON_VERSION'], 'NONE'), 'NONE')
30
37
31
38
- bash : |
32
39
set -e
You can’t perform that action at this time.
0 commit comments