diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-01-25 23:19:19 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-01-25 23:57:04 +0100 |
commit | 3a4ccfe59e4b0e9795dde8cd8849cbaf19ab9302 (patch) | |
tree | c945a9cd84675fc5f3ffad1359972c365459344e /eclass | |
parent | profiles: Initial support for Python 3.6 (masked) (diff) | |
download | gentoo-3a4ccfe59e4b0e9795dde8cd8849cbaf19ab9302.tar.gz gentoo-3a4ccfe59e4b0e9795dde8cd8849cbaf19ab9302.tar.bz2 gentoo-3a4ccfe59e4b0e9795dde8cd8849cbaf19ab9302.zip |
python-utils-r1.eclass: Enable python3_6 target
Diffstat (limited to '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 9d4eb379d669..53f8ad4f4ba6 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -44,7 +44,7 @@ _PYTHON_ALL_IMPLS=( jython2_7 pypy pypy3 python2_7 - python3_4 python3_5 + python3_4 python3_5 python3_6 ) readonly _PYTHON_ALL_IMPLS @@ -68,7 +68,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_[45]|jython2_7) + python2_7|python3_[456]|jython2_7) return 0 ;; pypy1_[89]|pypy2_0|python2_[56]|python3_[123]) |