From 82f4de559302c8d517c09cc92390e824007e705f Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Tue, 20 Jan 2026 18:52:39 +0300 Subject: [PATCH] CI: reflect GraalPy 25.0.2 dropping MacOS x64 support --- .github/workflows/modified_scripts_build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/modified_scripts_build.yml b/.github/workflows/modified_scripts_build.yml index b53de07d..bdd82d9d 100644 --- a/.github/workflows/modified_scripts_build.yml +++ b/.github/workflows/modified_scripts_build.yml @@ -56,6 +56,14 @@ 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): + version = packaging.version.Version(m.group(2)) + + # GraalPy dropped MacOS x64 support + if version >= packaging.version.Version('25.0.2'): + result.append({'os':'macos-15-intel','python-version':line}) + + EOF = str(random.getrandbits(15*8)) with open(os.environ['GITHUB_ENV'],'w') as f: