From cf2e89a622433a7d49bb80173601ea6edf9e4228 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 18 Dec 2024 22:50:02 +0100 Subject: [PATCH] Updated Python version for MSYS2 to 3.12. --- .github/workflows/ExtractConfiguration.yml | 2 +- .github/workflows/Parameters.yml | 2 +- .github/workflows/_Checking_Parameters.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ExtractConfiguration.yml b/.github/workflows/ExtractConfiguration.yml index 60f4512..58f362d 100644 --- a/.github/workflows/ExtractConfiguration.yml +++ b/.github/workflows/ExtractConfiguration.yml @@ -218,4 +218,4 @@ jobs: coverage_report_json={coverageJSONFile.as_posix()} """)) - print(f"DEBUG:\n unittest xml={unittestXMLFile}\n coverage html={coverageHTMLDirectory}\n coverage xml={coverageXMLFile}\n coverage json={coverageJSONFile}") + print(f"DEBUG:\n unittest xml: {unittestXMLFile}\n coverage html: {coverageHTMLDirectory}\n coverage xml: {coverageXMLFile}\n coverage json: {coverageJSONFile}") diff --git a/.github/workflows/Parameters.yml b/.github/workflows/Parameters.yml index 82cb950..1477eae 100644 --- a/.github/workflows/Parameters.yml +++ b/.github/workflows/Parameters.yml @@ -147,7 +147,7 @@ jobs: else: name = f"{package_namespace}.{package_name}" - currentMSYS2Version = "3.11" + currentMSYS2Version = "3.12" currentAlphaVersion = "3.14" currentAlphaRelease = "3.14.0-alpha.1" diff --git a/.github/workflows/_Checking_Parameters.yml b/.github/workflows/_Checking_Parameters.yml index 12a0ac5..110e988 100644 --- a/.github/workflows/_Checking_Parameters.yml +++ b/.github/workflows/_Checking_Parameters.yml @@ -83,7 +83,7 @@ jobs: expectedPythonVersion = "3.13" expectedPythons = ["3.9", "3.10", "3.11", "3.12", "3.13"] expectedSystems = ["ubuntu", "windows", "macos", "macos-arm"] - expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.11", "ucrt64:3.11"] + expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.12", "ucrt64:3.11"] expectedName = "Example" expectedArtifacts = { "unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML", @@ -146,7 +146,7 @@ jobs: expectedPythonVersion = "3.13" expectedPythons = ["3.11", "3.12", "pypy-3.9", "pypy-3.10"] expectedSystems = ["ubuntu", "windows", "macos", "macos-arm"] - expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.11", "ucrt64:3.11"] + expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw64:3.12", "ucrt64:3.11"] expectedName = "Example" expectedArtifacts = { "unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML", @@ -209,7 +209,7 @@ jobs: expectedPythonVersion = "3.13" expectedPythons = ["3.9", "3.10", "3.11", "3.12", "3.13"] expectedSystems = ["windows"] - expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw32:3.11", "mingw64:3.11"] + expectedJobs = [f"{system}:{python}" for system in expectedSystems for python in expectedPythons] + ["mingw32:3.12", "mingw64:3.11"] expectedName = "Example" expectedArtifacts = { "unittesting_xml": f"{expectedName}-UnitTestReportSummary-XML",