diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-11 22:05:36 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-11 22:06:44 +0100 |
commit | 9b887e3b13d38343cc0b72275c495708e4b96a85 (patch) | |
tree | dfb52dd4626fd8f625111b9b963684019ffec17d /eclass/python-utils-r1.eclass | |
parent | profiles: mask chromium dev channel release (M80) (diff) | |
download | gentoo-9b887e3b13d38343cc0b72275c495708e4b96a85.tar.gz gentoo-9b887e3b13d38343cc0b72275c495708e4b96a85.tar.bz2 gentoo-9b887e3b13d38343cc0b72275c495708e4b96a85.zip |
python-utils-r1.eclass: Enable python3.8
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 549dd5f2e56e..647eb04344d2 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -44,7 +44,7 @@ _PYTHON_ALL_IMPLS=( jython2_7 pypy pypy3 python2_7 - python3_5 python3_6 python3_7 + python3_5 python3_6 python3_7 python3_8 ) readonly _PYTHON_ALL_IMPLS @@ -80,7 +80,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_[567]|jython2_7) + python2_7|python3_[5678]|jython2_7) return 0 ;; pypy1_[89]|pypy2_0|python2_[56]|python3_[1234]) |