summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-12-12 06:49:06 +0100
committerMichał Górny <mgorny@gentoo.org>2022-12-14 11:16:16 +0100
commit5f2ae4fcdaa38b2fa72e7a3788ccc7d6efd133c7 (patch)
treed9a25d155277a148db502b22b6c9c760a7a13be4 /eclass/python-utils-r1.eclass
parenteclass/tests/python-utils-r1.sh: Remove old impls (diff)
downloadgentoo-5f2ae4fcdaa38b2fa72e7a3788ccc7d6efd133c7.tar.gz
gentoo-5f2ae4fcdaa38b2fa72e7a3788ccc7d6efd133c7.tar.bz2
gentoo-5f2ae4fcdaa38b2fa72e7a3788ccc7d6efd133c7.zip
python-utils.eclass: Bump minimal Python versions
Bump minimal Python versions after the last security stabilizations, plus PyPy3 sysconfig bugfix. Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r--eclass/python-utils-r1.eclass12
1 files changed, 5 insertions, 7 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index df955371483e..d7b3df6105ab 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -445,17 +445,15 @@ _python_export() {
local d
case ${impl} in
python3.8)
- PYTHON_PKG_DEP=">=dev-lang/python-3.8.15_p3:3.8";;
+ PYTHON_PKG_DEP=">=dev-lang/python-3.8.16:3.8";;
python3.9)
- PYTHON_PKG_DEP=">=dev-lang/python-3.9.15_p3:3.9";;
+ PYTHON_PKG_DEP=">=dev-lang/python-3.9.16:3.9";;
python3.10)
- PYTHON_PKG_DEP=">=dev-lang/python-3.10.8_p3:3.10";;
+ PYTHON_PKG_DEP=">=dev-lang/python-3.10.9:3.10";;
python3.11)
- PYTHON_PKG_DEP=">=dev-lang/python-3.11.0_p2:3.11";;
- python*)
- PYTHON_PKG_DEP="dev-lang/python:${impl#python}";;
+ PYTHON_PKG_DEP=">=dev-lang/python-3.11.1:3.11";;
pypy3)
- PYTHON_PKG_DEP='>=dev-python/pypy3-7.3.9_p9:0=';;
+ PYTHON_PKG_DEP='>=dev-python/pypy3-7.3.10-r1:0=';;
*)
die "Invalid implementation: ${impl}"
esac