diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-05-08 17:26:06 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-05-08 20:30:58 +0200 |
commit | 8fa7b8f773c73f5fa045e2aec9ef0b6cd0a0149c (patch) | |
tree | 4cd466466eef933b99d1c0c46a09602626f0eb74 /eclass/python-utils-r1.eclass | |
parent | profiles: Add python3_13 targets (diff) | |
download | gentoo-8fa7b8f773c73f5fa045e2aec9ef0b6cd0a0149c.tar.gz gentoo-8fa7b8f773c73f5fa045e2aec9ef0b6cd0a0149c.tar.bz2 gentoo-8fa7b8f773c73f5fa045e2aec9ef0b6cd0a0149c.zip |
python-utils-r1.eclass: Add python3_13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r-- | eclass/python-utils-r1.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index bbf751399476..275ac3a96523 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -40,7 +40,7 @@ inherit multiprocessing toolchain-funcs # All supported Python implementations, most preferred last. _PYTHON_ALL_IMPLS=( pypy3 - python3_{10..12} + python3_{10..13} ) readonly _PYTHON_ALL_IMPLS @@ -80,7 +80,7 @@ _python_verify_patterns() { local impl pattern for pattern; do case ${pattern} in - -[23]|3.[89]|3.1[012]) + -[23]|3.[89]|3.1[0-3]) continue ;; esac @@ -136,7 +136,7 @@ _python_set_impls() { # please keep them in sync with _PYTHON_ALL_IMPLS # and _PYTHON_HISTORICAL_IMPLS case ${i} in - pypy3|python3_9|python3_1[0-2]) + pypy3|python3_9|python3_1[0-3]) ;; jython2_7|pypy|pypy1_[89]|pypy2_0|python2_[5-7]|python3_[1-9]) obsolete+=( "${i}" ) @@ -231,7 +231,7 @@ _python_impl_matches() { [[ ${impl} == python${pattern/./_} || ${impl} == pypy3 ]] && return 0 ;; - 3.8|3.9|3.1[1-2]) + 3.8|3.9|3.1[1-3]) [[ ${impl} == python${pattern/./_} ]] && return 0 ;; *) |