Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 0c8d4d7

Browse files
committed
update windows to 2019, re-add python version task
1 parent 841bb25 commit 0c8d4d7

File tree

2 files changed

+26
-11
lines changed

2 files changed

+26
-11
lines changed

azure-pipelines.yml

+21-11
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,19 @@ jobs:
4848
PYTHON_VERSION: "3.8.x"
4949
PYTHON_ARCH: 'x64'
5050
BITS: 64
51+
52+
- template: azure/windows.yml
53+
parameters:
54+
name: windows
55+
vmImage: windows-2019
5156
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'"
5359
PYTHON_ARCH: "x86"
5460
BITS: 32
5561
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'"
5764
PYTHON_ARCH: 'x64'
5865
BITS: 64
5966

@@ -90,6 +97,18 @@ jobs:
9097
py_3.8_64:
9198
MB_PYTHON_VERSION: "3.8"
9299
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+
93112
# manylinux1 wheels
94113
py_3.6_32manylinux1:
95114
MB_PYTHON_VERSION: "3.6"
@@ -115,15 +134,6 @@ jobs:
115134
py_3.8_64manylinux1:
116135
MB_PYTHON_VERSION: "3.8"
117136
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-
127137

128138
- template: azure/posix.yml
129139
parameters:

azure/posix.yml

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ jobs:
2323
- checkout: self
2424
submodules: true
2525

26+
- task: UsePythonVersion@0
27+
inputs:
28+
versionSpec: $[coalesce(variables.AZURE_PYTHON_VERSION, variables.MB_PYTHON_VERSION)]
29+
displayName: Set python version
30+
2631
- bash: |
2732
set -e
2833

0 commit comments

Comments
 (0)