From 34a39278d7853690b99d9560e089c87eb35badb0 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Fri, 17 Jan 2020 13:22:42 +0000 Subject: [PATCH] Add a 3.8 CI run for macos This fails, but creating the commit anyway so that someone who cares can look at the CI output --- azure-pipelines.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 388ec943..de9e2eff 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -53,11 +53,15 @@ jobs: python.version: '3.7' numbacommand: '-c numba numba' installPackageCommand: 'sudo python setup.py develop --no-deps' - # TODO[gh-226]: Add a 3.8 run for macos + macPython38: + imageName: 'macos-10.13' + python.version: '3.8' + numbacommand: '-c numba numba' + installPackageCommand: 'sudo python setup.py develop --no-deps' - macPython37NumbaDev: + macPython38NumbaDev: imageName: 'macos-10.13' - python.version: '3.7' + python.version: '3.8' numbacommand: '-c numba/label/dev numba' installPackageCommand: 'sudo python setup.py develop --no-deps'