From 52b03c9a02474343cac27863b9e0ea8d5873fda8 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Tue, 30 Jun 2026 21:05:47 +0300 Subject: [PATCH] Adjust GraalPy version detection with the new naming scheme --- .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 78d144c9..73fed172 100644 --- a/.github/workflows/modified_scripts_build.yml +++ b/.github/workflows/modified_scripts_build.yml @@ -59,7 +59,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