Bumped Python 3.12 to 3.13 in MSYS2.

This commit is contained in:
Patrick Lehmann
2026-01-17 19:37:23 +01:00
parent f7353134cb
commit aefbd1cbba
9 changed files with 18 additions and 15 deletions

View File

@@ -105,7 +105,7 @@ jobs:
print(f"Python: {version} (of default installation)")
from tomli import load as tomli_load
from tomllib import load as tomllib_load
unittestXMLFile = Path("./unittest.xml")
coverageHTMLDirectory = Path("htmlcov")
@@ -121,7 +121,7 @@ jobs:
pyProjectFile = Path("pyproject.toml")
if pyProjectFile.exists():
with pyProjectFile.open("rb") as file:
pyProjectSettings = tomli_load(file)
pyProjectSettings = tomllib_load(file)
toolSection = pyProjectSettings["tool"]
if "pytest" in toolSection: