From e52da606ff38b573879db16ca4096ec8a911d8f0 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Fri, 22 May 2026 09:48:52 +0300 Subject: [PATCH] CI: modified_scripts_build : fix GraalPy version detection --- .github/workflows/modified_scripts_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/modified_scripts_build.yml b/.github/workflows/modified_scripts_build.yml index 5faf172d..5233beec 100644 --- a/.github/workflows/modified_scripts_build.yml +++ b/.github/workflows/modified_scripts_build.yml @@ -56,7 +56,7 @@ jobs: if name == 'anaconda3' and version >= packaging.version.Version('2025.12'): result.append({'os':'macos-15-intel','python-version':line}) - if m:=re.match(r'graalpy-(community-)?-(\d+\.\d+.\d+)', line): + if m:=re.match(r'graalpy-(community-)?(\d+\.\d+.\d+)', line): version = packaging.version.Version(m.group(2)) # GraalPy dropped MacOS x64 support