summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2023-06-23 08:12:42 +0200
committerMichał Górny <mgorny@gentoo.org>2023-07-02 17:06:28 +0200
commitb71b3342dc4c197c5aaf77ef7fff56a9cc06c98d (patch)
tree140b5d6b9ed1b3203b3b8a7b66b915c839872652 /eclass/python-utils-r1.eclass
parentpython-utils-r1.eclass: make pypy3 match Python 3.10 now (diff)
downloadgentoo-b71b3342dc4c197c5aaf77ef7fff56a9cc06c98d.tar.gz
gentoo-b71b3342dc4c197c5aaf77ef7fff56a9cc06c98d.tar.bz2
gentoo-b71b3342dc4c197c5aaf77ef7fff56a9cc06c98d.zip
python-utils-r1.eclass: Bump minimum dev-lang/python versions
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/python-utils-r1.eclass')
-rw-r--r--eclass/python-utils-r1.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
index d2bbe90da049..40c15b65d7a5 100644
--- a/eclass/python-utils-r1.eclass
+++ b/eclass/python-utils-r1.eclass
@@ -448,11 +448,11 @@ _python_export() {
local d
case ${impl} in
python3.10)
- PYTHON_PKG_DEP=">=dev-lang/python-3.10.11:3.10";;
+ PYTHON_PKG_DEP=">=dev-lang/python-3.10.12:3.10";;
python3.11)
- PYTHON_PKG_DEP=">=dev-lang/python-3.11.3:3.11";;
+ PYTHON_PKG_DEP=">=dev-lang/python-3.11.4:3.11";;
python3.12)
- PYTHON_PKG_DEP=">=dev-lang/python-3.12.0_beta1:3.12";;
+ PYTHON_PKG_DEP=">=dev-lang/python-3.12.0_beta3:3.12";;
pypy3)
PYTHON_PKG_DEP='>=dev-python/pypy3-7.3.11_p1:0=';;
*)