From 0a9177eafff5279743fa0619afb973d143c1fd24 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Thu, 3 Nov 2022 23:01:59 +0100 Subject: [PATCH] Fixed duplicated mingw64 combinations. --- .github/workflows/Parameters.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Parameters.yml b/.github/workflows/Parameters.yml index 9bda071..47f1843 100644 --- a/.github/workflows/Parameters.yml +++ b/.github/workflows/Parameters.yml @@ -193,10 +193,15 @@ jobs: combinations = [ (system, version) for system in systems - if system in data['sys'] or system in data['runtime'] + if system in data['sys'] for version in versions if version in data['python'] and f"{system}:{version}" not in excludes + ] + [ + (system, currentMSYS2Version) + for system in systems + if system in data['runtime'] + and f"{system}:{currentMSYS2Version}" not in excludes ] + [ (system, version) for system, version in includes @@ -225,7 +230,7 @@ jobs: 'runtime': runtime.upper(), 'shell': "msys2 {0}", 'pyicon': data['python'][currentMSYS2Version]['icon'], - 'python': currentMSYS2Version, + 'python': version, 'envname': data['runtime'][runtime]['name'], } for runtime, version in combinations if runtime not in data['sys']