From 0db182165844a9308ec58440252be2a5dcdfd17e Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Thu, 25 Apr 2024 22:09:59 +0200 Subject: [PATCH] Revert "Added a minimum Python version field, so unsupported Python versions (e.g. for macOS) can be disabled." This reverts commit 461931099aa5cb99e2ed18deb885f1eddafa473b. --- .github/workflows/Parameters.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Parameters.yml b/.github/workflows/Parameters.yml index 1692e60..5b7c29e 100644 --- a/.github/workflows/Parameters.yml +++ b/.github/workflows/Parameters.yml @@ -158,9 +158,9 @@ jobs: }, # Runner systems (runner images) supported by GitHub Actions "sys": { - "ubuntu": { "icon": "🐧", "runs-on": "ubuntu-latest", "shell": "bash", "name": "Linux (x86-64)", "minPy": [3, 7]}, - "windows": { "icon": "🪟", "runs-on": "windows-latest", "shell": "pwsh", "name": "Windows (x86-64)", "minPy": [3, 7]}, - "macos": { "icon": "🍎", "runs-on": "macos-latest", "shell": "bash", "name": "MacOS (x86-64)", "minPy": [3, 10]}, + "ubuntu": { "icon": "🐧", "runs-on": "ubuntu-latest", "shell": "bash", "name": "Linux (x86-64)" }, + "windows": { "icon": "🪟", "runs-on": "windows-latest", "shell": "pwsh", "name": "Windows (x86-64)" }, + "macos": { "icon": "🍎", "runs-on": "macos-latest", "shell": "bash", "name": "MacOS (x86-64)" }, }, # Runtimes provided by MSYS2 "runtime": { @@ -189,7 +189,6 @@ jobs: if system in data["sys"] for version in versions if version in data["python"] - and [int(i) for i in version.split(".")] >= data["sys"][system]["minPy"] and f"{system}:{version}" not in excludes and f"{system}:{version}" not in disabled ] + [ @@ -203,7 +202,6 @@ jobs: for system, version in includes if system in data["sys"] and version in data["python"] - and [int(i) for i in version.split(".")] >= data["sys"][system]["minPy"] and f"{system}:{version}" not in disabled ] print(f"Combinations ({len(combinations)}):")