From db7ccbcc89b9c1f65605e8477998707521bf3fc2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 31 Oct 2023 19:05:06 +0100 Subject: [PATCH] .azure/build.yml: Add Python 3.12 to the build --- .azure/build.yml | 6 ++++++ .azure/scripts/test.yml | 1 + 2 files changed, 7 insertions(+) diff --git a/.azure/build.yml b/.azure/build.yml index 4b16e8e04..a4a01b625 100644 --- a/.azure/build.yml +++ b/.azure/build.yml @@ -65,6 +65,9 @@ jobs: linux-3.11: imageName: "ubuntu-latest" python.version: '3.11' + linux-3.12: + imageName: "ubuntu-latest" + python.version: '3.12' windows-3.7: imageName: "windows-2019" python.version: '3.7' @@ -81,6 +84,9 @@ jobs: windows-3.11: imageName: "windows-2019" python.version: '3.11' + windows-3.12: + imageName: "windows-2019" + python.version: '3.12' mac-3.9: imageName: "macos-11" python.version: '3.9' diff --git a/.azure/scripts/test.yml b/.azure/scripts/test.yml index 3177c59ab..c67cdcc2a 100644 --- a/.azure/scripts/test.yml +++ b/.azure/scripts/test.yml @@ -9,6 +9,7 @@ steps: version: 11 - script: | + python -m pip install --upgrade pytest setuptools python setup.py build_ext --inplace displayName: 'Build module'