From 6e1381a68c864f915d55b161dcea5b4c13a77d67 Mon Sep 17 00:00:00 2001 From: Roman Babenko Date: Fri, 29 Nov 2024 19:54:24 +0200 Subject: [PATCH] exclude windows-latest py3.12 due server --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 009b2087d..8e35e8676 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,10 @@ jobs: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - + exclude: + # exclude py3.12 for windows latest due UserWarning: Unsupported Windows version (2022server). ONNX Runtime supports Windows 10 and above, only. + - os: windows-latest + python-version: "3.12" steps: - name: Harden Runner