Ver código fonte

Add 3.13.0b3t and exclude it from `pyenv latest`.

This adds the free-threaded (without GIL) version of 3.13.0b3.
pull/3000/head
Sam Gross 2 meses atrás
pai
commit
dd185c958c
3 arquivos alterados com 4 adições e 2 exclusões
  1. +1
    -1
      libexec/pyenv-latest
  2. +2
    -0
      plugins/python-build/share/python-build/3.13.0b3t
  3. +1
    -1
      pyenv.d/install/latest.bash

+ 1
- 1
libexec/pyenv-latest Ver arquivo

@ -50,7 +50,7 @@ IFS=$'\n'
DEFINITION_CANDIDATES=(\
$(printf '%s\n' "${DEFINITION_CANDIDATES[@]}" | \
sed -E -e '/-dev$/d' -e '/-src$/d' -e '/-latest$/d' -e '/(a|b|rc)[0-9]+$/d'));
sed -E -e '/-dev$/d' -e '/-src$/d' -e '/-latest$/d' -e '/(a|b|rc)[0-9]+$/d' -e '/t$/d'));
# Compose a sorting key, followed by | and original value
DEFINITION_CANDIDATES=(\

+ 2
- 0
plugins/python-build/share/python-build/3.13.0b3t Ver arquivo

@ -0,0 +1,2 @@
export PYTHON_BUILD_FREE_THREADING=1
source "$(dirname "${BASH_SOURCE[0]}")"/3.13.0b3

+ 1
- 1
pyenv.d/install/latest.bash Ver arquivo

@ -10,7 +10,7 @@ pyenv_install_resolve_latest() {
$(python-build --definitions | \
grep -F "${DEFINITION_PREFIX}" | \
grep "^${DEFINITION_TYPE}" | \
sed -E -e '/-dev$/d' -e '/-src$/d' -e '/(b|rc)[0-9]+$/d' | \
sed -E -e '/-dev$/d' -e '/-src$/d' -e '/(b|rc)[0-9]+$/d' -e '/t$/d' | \
sort -t. -k1,1r -k 2,2nr -k 3,3nr \
|| true))
DEFINITION="${DEFINITION_CANDIDATES}"

Carregando…
Cancelar
Salvar