summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-10-23 21:20:31 +0200
committerEli Schwartz <eschwartz@gentoo.org>2024-11-29 16:11:58 -0500
commit9450bddf360dd6cd5480fd064553eff53bf93d9b (patch)
tree292b49d9ac99cb5bded4e445652e92e1625a91c9
parentkde-frameworks/qqc2-desktop-style: drop 6.6.0 (diff)
downloadgentoo-9450bddf360dd6cd5480fd064553eff53bf93d9b.tar.gz
gentoo-9450bddf360dd6cd5480fd064553eff53bf93d9b.tar.bz2
gentoo-9450bddf360dd6cd5480fd064553eff53bf93d9b.zip
python-utils-r1.eclass: Move python3_13t before other python*
Move the python3_13t target on the list before other CPython targets. This means it's technically "less preferred", so e.g. *all phases would rather be performed with regular CPython, which should generally be more faster. Signed-off-by: Michał Górny <mgorny@gentoo.org> Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
-rw-r--r--eclass/python-utils-r1.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index 555b6c561a18..aa22b164020c 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -40,8 +40,8 @@ inherit multiprocessing toolchain-funcs
# All supported Python implementations, most preferred last.
_PYTHON_ALL_IMPLS=(
pypy3
- python3_{10..13}
python3_13t
+ python3_{10..13}
)
readonly _PYTHON_ALL_IMPLS