diff options
author | Fabian Groffen <grobian@gentoo.org> | 2021-05-04 19:09:11 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2021-05-04 19:09:11 +0200 |
commit | 811aed4f00904b87f49ade8e75a1f00683dc9904 (patch) | |
tree | d8b95be410d90707b3368d0fa867fc8c0c8004fd | |
parent | scripts/bootstrap-prefix: fix non-RAP bootstraps, bug #782880 (diff) | |
download | prefix-811aed4f00904b87f49ade8e75a1f00683dc9904.tar.gz prefix-811aed4f00904b87f49ade8e75a1f00683dc9904.tar.bz2 prefix-811aed4f00904b87f49ade8e75a1f00683dc9904.zip |
eclass/python-utils-r1: sync with gx86
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rw-r--r-- | eclass/python-utils-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 88b258a7f6..5023750fd6 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -42,7 +42,7 @@ inherit toolchain-funcs # All supported Python implementations, most preferred last. _PYTHON_ALL_IMPLS=( pypy3 - python3_7 python3_8 python3_9 + python3_{7..10} ) readonly _PYTHON_ALL_IMPLS @@ -125,7 +125,7 @@ _python_set_impls() { # please keep them in sync with _PYTHON_ALL_IMPLS # and _PYTHON_HISTORICAL_IMPLS case ${i} in - jython2_7|pypy|pypy1_[89]|pypy2_0|pypy3|python2_[5-7]|python3_[1-9]) + jython2_7|pypy|pypy1_[89]|pypy2_0|pypy3|python2_[5-7]|python3_[1-9]|python3_10) ;; *) if has "${i}" "${_PYTHON_ALL_IMPLS[@]}" \ |