diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-04-21 10:40:52 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-04-21 17:19:39 +0200 |
commit | 468c94224cad7ac46deb0314812ba9e1b3d4765e (patch) | |
tree | 75948adbdc240964ab6dff256862c60ff9118bc0 /eclass/python-utils-r1.eclass | |
parent | dev-python/cattrs: Bump to 22.1.0 (diff) | |
download | gentoo-468c94224cad7ac46deb0314812ba9e1b3d4765e.tar.gz gentoo-468c94224cad7ac46deb0314812ba9e1b3d4765e.tar.bz2 gentoo-468c94224cad7ac46deb0314812ba9e1b3d4765e.zip |
python-utils-r1.eclass: pypy3 is now Python 3.9
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 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 98cb49c95fd7..a6f5f24c8bdd 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -240,12 +240,12 @@ _python_impl_matches() { fi return 0 ;; - 3.8) - # the only unmasked pypy3 version is pypy3.8 atm + 3.9) + # the only unmasked pypy3 version is pypy3.9 atm [[ ${impl} == python${pattern/./_} || ${impl} == pypy3 ]] && return 0 ;; - 3.9|3.10) + 3.8|3.10) [[ ${impl} == python${pattern/./_} ]] && return 0 ;; *) |