diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-05-25 08:04:34 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-05-25 08:07:18 +0200 |
commit | e563ed3af0dad1d3eaa165f5eb89b6f7ed0a1c9c (patch) | |
tree | 17ff37c0b95b91a116deb28324d94fb31b2a8ad9 /eclass/python-utils-r1.eclass | |
parent | profiles: Prepare for Python 3.9 (diff) | |
download | gentoo-e563ed3af0dad1d3eaa165f5eb89b6f7ed0a1c9c.tar.gz gentoo-e563ed3af0dad1d3eaa165f5eb89b6f7ed0a1c9c.tar.bz2 gentoo-e563ed3af0dad1d3eaa165f5eb89b6f7ed0a1c9c.zip |
python-utils-r1.eclass: Enable python3_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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 4af710da363b..1067d2367aba 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -41,7 +41,7 @@ inherit toolchain-funcs _PYTHON_ALL_IMPLS=( pypy3 python2_7 - python3_6 python3_7 python3_8 + python3_6 python3_7 python3_8 python3_9 ) readonly _PYTHON_ALL_IMPLS @@ -77,7 +77,7 @@ _python_impl_supported() { # keep in sync with _PYTHON_ALL_IMPLS! # (not using that list because inline patterns shall be faster) case "${impl}" in - python2_7|python3_[678]|pypy3) + python2_7|python3_[6789]|pypy3) return 0 ;; jython2_7|pypy|pypy1_[89]|pypy2_0|python2_[56]|python3_[12345]) |