mirror of
https://github.com/pyenv/pyenv.git
synced 2026-01-11 23:47:15 +09:00
Anaconda 2025.12 dropped MacOS x64 support
This commit is contained in:
parent
f614e5caa5
commit
8c50260ba2
10
.github/workflows/modified_scripts_build.yml
vendored
10
.github/workflows/modified_scripts_build.yml
vendored
@ -31,7 +31,6 @@ jobs:
|
||||
- name: Build exclusions JSON
|
||||
shell: python
|
||||
run: |
|
||||
import base64
|
||||
import os
|
||||
import json
|
||||
import random
|
||||
@ -47,7 +46,14 @@ jobs:
|
||||
name, version = m.group(1), packaging.version.Version(m.group(3))
|
||||
|
||||
# Miniconda dropped MacOS x64 support
|
||||
if name == 'miniconda3' and version >= packaging.version.Version('25.9.1'):
|
||||
if (name == 'miniconda3' and version >= packaging.version.Version('25.9.1')):
|
||||
result.append({'os':'macos-15-intel','python-version':line})
|
||||
|
||||
if m:=re.match(r'([^-]+)-(\d+\.\d+)', line):
|
||||
name, version = m.group(1), packaging.version.Version(m.group(2))
|
||||
|
||||
# Anaconda dropped MacOS x64 support
|
||||
if name == 'anaconda3' and version >= packaging.version.Version('2025.12'):
|
||||
result.append({'os':'macos-15-intel','python-version':line})
|
||||
|
||||
EOF = str(random.getrandbits(15*8))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user