From 762b71b7234057c016ef2ad8b78dbf34e6585692 Mon Sep 17 00:00:00 2001 From: Kieran BW <41634689+FredHappyface@users.noreply.github.com> Date: Wed, 7 Oct 2020 14:01:45 +0100 Subject: [PATCH 1/2] add deploy and stage-test for py 3.9 on Win, Mac, Linux --- .azure-pipelines/deploy.yml | 15 +++++++++++++++ .azure-pipelines/stage-test.yml | 16 ++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/.azure-pipelines/deploy.yml b/.azure-pipelines/deploy.yml index f7d233198..bf772ceba 100644 --- a/.azure-pipelines/deploy.yml +++ b/.azure-pipelines/deploy.yml @@ -58,6 +58,9 @@ stages: py38 x64: python.code: 'cp38-cp38' manylinux: 'manylinux_64' + py39 x64: + python.code: 'cp39-cp39' + manylinux: 'manylinux_64' pool: vmImage: 'ubuntu-latest' container: manylinux @@ -107,6 +110,10 @@ stages: python.version: '3.8' python.architecture: 'x64' image: 'windows-latest' + Win py39 x64: + python.version: '3.9' + python.architecture: 'x64' + image: 'windows-latest' Win py35 x86: python.version: '3.5' python.architecture: 'x86' @@ -123,6 +130,10 @@ stages: python.version: '3.8' python.architecture: 'x86' image: 'windows-latest' + Win py39 x86: + python.version: '3.9' + python.architecture: 'x86' + image: 'windows-latest' Mac py35: python.version: '3.5' image: 'macos-latest' @@ -139,6 +150,10 @@ stages: python.version: '3.8' image: 'macos-latest' python.architecture: 'x64' + Mac py39: + python.version: '3.9' + image: 'macos-latest' + python.architecture: 'x64' pool: vmImage: '$(image)' steps: diff --git a/.azure-pipelines/stage-test.yml b/.azure-pipelines/stage-test.yml index 1ac2b667b..799eae53c 100644 --- a/.azure-pipelines/stage-test.yml +++ b/.azure-pipelines/stage-test.yml @@ -22,6 +22,10 @@ stages: python.version: '3.8' no_extensions: '' image: 'ubuntu-latest' + Py39-C-Linux: + python.version: '3.9' + no_extensions: '' + image: 'ubuntu-latest' Py35-Pure-Linux: python.version: '3.5' no_extensions: 'Y' @@ -38,6 +42,10 @@ stages: python.version: '3.8' no_extensions: 'Y' image: 'ubuntu-latest' + Py39-Pure-Linux: + python.version: '3.9' + no_extensions: 'Y' + image: 'ubuntu-latest' PyPy3-Linux: python.version: 'pypy3' no_extensions: '' @@ -58,6 +66,10 @@ stages: python.version: '3.8' no_extensions: '' image: 'windows-latest' + Py39-C-Win: + python.version: '3.9' + no_extensions: '' + image: 'windows-latest' Py35-C-Mac: python.version: '3.5' no_extensions: '' @@ -74,6 +86,10 @@ stages: python.version: '3.8' no_extensions: '' image: 'macos-latest' + Py39-C-Mac: + python.version: '3.9' + no_extensions: '' + image: 'macos-latest' pool: vmImage: '$(image)' From d4b3afcf6c81382d6d26dce782a06810f0ff9079 Mon Sep 17 00:00:00 2001 From: Kieran BW <41634689+FredHappyface@users.noreply.github.com> Date: Wed, 7 Oct 2020 14:07:52 +0100 Subject: [PATCH 2/2] update changes --- CHANGES/534.misc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 CHANGES/534.misc diff --git a/CHANGES/534.misc b/CHANGES/534.misc new file mode 100644 index 000000000..5ab2722f7 --- /dev/null +++ b/CHANGES/534.misc @@ -0,0 +1,2 @@ +Edit Azure configuration to include built wheels for Python 3.9 on Windows, +Mac and manylinux1