mirror of
https://github.com/pyenv/pyenv.git
synced 2026-04-19 03:25:20 +09:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dfb1a96c3e | ||
|
|
ae1bb9c061 | ||
|
|
46e4e6ab07 |
10
.github/workflows/modified_scripts_build.yml
vendored
10
.github/workflows/modified_scripts_build.yml
vendored
@ -83,7 +83,11 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ${{fromJson(needs.discover_modified_scripts.outputs.versions)}}
|
python-version: ${{fromJson(needs.discover_modified_scripts.outputs.versions)}}
|
||||||
os: ["macos-14", "macos-15", "macos-15-intel"]
|
os:
|
||||||
|
- macos-14
|
||||||
|
- macos-15
|
||||||
|
- macos-15-intel
|
||||||
|
- macos-26
|
||||||
exclude: ${{fromJson(needs.discover_modified_scripts.outputs.versions_macos_build_exclude)}}
|
exclude: ${{fromJson(needs.discover_modified_scripts.outputs.versions_macos_build_exclude)}}
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
@ -193,7 +197,9 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ${{fromJson(needs.discover_modified_scripts.outputs.versions)}}
|
python-version: ${{fromJson(needs.discover_modified_scripts.outputs.versions)}}
|
||||||
os: ["ubuntu-22.04", "ubuntu-24.04"]
|
os:
|
||||||
|
- ubuntu-22.04
|
||||||
|
- ubuntu-24.04
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
|
|||||||
7
.github/workflows/pyenv_tests.yml
vendored
7
.github/workflows/pyenv_tests.yml
vendored
@ -10,11 +10,12 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-24.04
|
|
||||||
- ubuntu-22.04
|
- ubuntu-22.04
|
||||||
- macos-15-intel
|
- ubuntu-24.04
|
||||||
- macos-15
|
|
||||||
- macos-14
|
- macos-14
|
||||||
|
- macos-15
|
||||||
|
- macos-15-intel
|
||||||
|
- macos-26
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
|
|||||||
@ -32,9 +32,8 @@ import tqdm
|
|||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
CUTOFF_VERSION=packaging.version.Version('3.9')
|
CUTOFF_VERSION=packaging.version.Version('3.10')
|
||||||
EXCLUDED_VERSIONS= {
|
EXCLUDED_VERSIONS= {
|
||||||
packaging.version.Version("3.9.3") #recalled upstream
|
|
||||||
}
|
}
|
||||||
|
|
||||||
here = pathlib.Path(__file__).resolve()
|
here = pathlib.Path(__file__).resolve()
|
||||||
@ -168,7 +167,6 @@ def handle_t_thunks(version, previous_version, is_prerelease_upgrade):
|
|||||||
thunk_name = (str(version) + "t")
|
thunk_name = (str(version) + "t")
|
||||||
thunk_path = OUT_DIR / thunk_name
|
thunk_path = OUT_DIR / thunk_name
|
||||||
previous_thunk_name = str(previous_version) + "t"
|
previous_thunk_name = str(previous_version) + "t"
|
||||||
previous_thunk_path = OUT_DIR / previous_thunk_name
|
|
||||||
if is_prerelease_upgrade:
|
if is_prerelease_upgrade:
|
||||||
logger.info(f"Git moving {previous_thunk_name} to {thunk_name}")
|
logger.info(f"Git moving {previous_thunk_name} to {thunk_name}")
|
||||||
subprocess.check_call(("git","-C",OUT_DIR,
|
subprocess.check_call(("git","-C",OUT_DIR,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user