From c3c6a09a9beda27a1db3f2eb19c75dd3803f868d Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 24 Apr 2024 00:30:55 +0200 Subject: [PATCH] Fixed syntax error. --- .github/workflows/Parameters.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Parameters.yml b/.github/workflows/Parameters.yml index 6266989..620b706 100644 --- a/.github/workflows/Parameters.yml +++ b/.github/workflows/Parameters.yml @@ -185,7 +185,7 @@ jobs: def toVersion(value): major, minor = value.split(".") - return tuple(int(major[-1]), int(minor)) + return int(major[-1]), int(minor) combinations = [ (system, version)