From ee9a3fbdcd14a1ab5a9f52c505716de82cdc2de0 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Tue, 6 Aug 2024 09:54:41 +0200 Subject: [PATCH] Remove macOS with Python 3.8, 3.9 from expected list. --- .github/workflows/_Checking_Parameters.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/_Checking_Parameters.yml b/.github/workflows/_Checking_Parameters.yml index 17c339c..eeabfc6 100644 --- a/.github/workflows/_Checking_Parameters.yml +++ b/.github/workflows/_Checking_Parameters.yml @@ -84,6 +84,8 @@ jobs: expectedPythons = ["3.8", "3.9", "3.10", "3.11", "3.12"] expectedSystems = ["ubuntu", "windows", "macos"] expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.11", "ucrt64:3.11"] + expectedJobs.remove("macos:3.8") + expectedJobs.remove("macos:3.9") expectedName = "Example" expectedArtifacts = { "unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",