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

Commit bed1e9d

Browse files
authored
Merge pull request #99 from mattip/3.9
add python 3.9
2 parents 813906e + b399891 commit bed1e9d

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed

.travis.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,14 @@ jobs:
5555
- MB_PYTHON_VERSION=3.6
5656
- DEBUG_PRINT=1
5757
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
58+
- os: linux
59+
arch: arm64
60+
env:
61+
- PLAT=aarch64
62+
- MB_ML_VER=2014
63+
- MB_PYTHON_VERSION=3.7
64+
- DEBUG_PRINT=1
65+
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
5866
- os: linux
5967
arch: arm64
6068
env:
@@ -68,7 +76,7 @@ jobs:
6876
env:
6977
- PLAT=aarch64
7078
- MB_ML_VER=2014
71-
- MB_PYTHON_VERSION=3.7
79+
- MB_PYTHON_VERSION=3.9
7280
- DEBUG_PRINT=1
7381
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
7482

azure-pipelines.yml

+19-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ variables:
1616
jobs:
1717
- template: azure/windows.yml
1818
parameters:
19-
name: windows
19+
name: windows2017
2020
vmImage: vs2017-win2016
2121
matrix:
2222
py_3.6_32:
@@ -81,12 +81,28 @@ jobs:
8181
py_3.8_64:
8282
MB_PYTHON_VERSION: "3.8"
8383
MB_ML_VER: "2010"
84+
py_3.9_32manylinux2010:
85+
MB_PYTHON_VERSION: "3.9"
86+
# Comment this out when the image grows a CPython3.9
87+
AZURE_PYTHON_VERSION: "3.8"
88+
PLAT: "i686"
89+
MB_ML_VER: "2010"
90+
ENV_VARS_PATH: "env_vars_32.sh"
91+
DOCKER_TEST_IMAGE: "multibuild/xenial_{PLAT}"
92+
py_3.9_64manylinux2010:
93+
MB_PYTHON_VERSION: "3.9"
94+
# Comment this out when the image grows a CPython3.9
95+
AZURE_PYTHON_VERSION: "3.8"
96+
MB_ML_VER: "2010"
97+
DOCKER_TEST_IMAGE: "multibuild/xenial_{PLAT}"
98+
8499
# manylinux1 wheels
85100
py_3.6_32manylinux1:
86101
MB_PYTHON_VERSION: "3.6"
87102
PLAT: "i686"
88103
MB_ML_VER: "1"
89104
ENV_VARS_PATH: "env_vars_32.sh"
105+
DOCKER_TEST_IMAGE: "multibuild/xenial_{PLAT}"
90106
py_3.6_64manylinux1:
91107
MB_PYTHON_VERSION: "3.6"
92108
MB_ML_VER: "1"
@@ -95,6 +111,7 @@ jobs:
95111
PLAT: "i686"
96112
MB_ML_VER: "1"
97113
ENV_VARS_PATH: "env_vars_32.sh"
114+
DOCKER_TEST_IMAGE: "multibuild/xenial_{PLAT}"
98115
py_3.7_64manylinux1:
99116
MB_PYTHON_VERSION: "3.7"
100117
MB_ML_VER: "1"
@@ -103,6 +120,7 @@ jobs:
103120
PLAT: "i686"
104121
MB_ML_VER: "1"
105122
ENV_VARS_PATH: "env_vars_32.sh"
123+
DOCKER_TEST_IMAGE: "multibuild/xenial_{PLAT}"
106124
py_3.8_64manylinux1:
107125
MB_PYTHON_VERSION: "3.8"
108126
MB_ML_VER: "1"

azure/posix.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,17 @@ jobs:
2323
- checkout: self
2424
submodules: true
2525

26+
- task: UsePythonVersion@0
27+
inputs:
28+
versionSpec: $(AZURE_PYTHON_VERSION)
29+
displayName: Set python version from AZURE
30+
condition: ne( coalesce (variables['AZURE_PYTHON_VERSION'], 'NONE'), 'NONE')
31+
2632
- task: UsePythonVersion@0
2733
inputs:
2834
versionSpec: $(MB_PYTHON_VERSION)
29-
displayName: Set python version
35+
displayName: Set python version from MB
36+
condition: eq( coalesce (variables['AZURE_PYTHON_VERSION'], 'NONE'), 'NONE')
3037

3138
- bash: |
3239
set -e

0 commit comments

Comments
 (0)