diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-12-29 20:57:08 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-01-15 18:05:53 +0100 |
commit | 3fd56c0d9e9f390d82eb90d5e52f68475763bfc2 (patch) | |
tree | aa548d7f11d49f2dc761028104c5cdc4629f8324 /eclass/python-utils-r1.eclass | |
parent | python-utils-r1.eclass: Inline _python_impl_supported() (diff) | |
download | gentoo-3fd56c0d9e9f390d82eb90d5e52f68475763bfc2.tar.gz gentoo-3fd56c0d9e9f390d82eb90d5e52f68475763bfc2.tar.bz2 gentoo-3fd56c0d9e9f390d82eb90d5e52f68475763bfc2.zip |
python-utils-r1.eclass: Disable python3_6
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 2aa953213b6a..6d482aa106c0 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @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_9 + python3_7 python3_8 python3_9 ) readonly _PYTHON_ALL_IMPLS @@ -53,7 +53,7 @@ _PYTHON_HISTORICAL_IMPLS=( jython2_7 pypy pypy1_{8,9} pypy2_0 python2_{5,6} - python3_{1,2,3,4,5} + python3_{1..6} ) readonly _PYTHON_HISTORICAL_IMPLS |