mirror of
https://github.com/pyenv/pyenv.git
synced 2026-01-21 03:57:28 +09:00
CI: reflect GraalPy 25.0.2 dropping MacOS x64 support
This commit is contained in:
parent
968cd11daa
commit
82f4de5593
8
.github/workflows/modified_scripts_build.yml
vendored
8
.github/workflows/modified_scripts_build.yml
vendored
@ -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:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user