diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-10-02 01:22:57 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-10-02 01:22:57 +0000 |
commit | ee9bbcf4032ed57dd77c08a6cbd0d8c708bfd4cc (patch) | |
tree | f5ebfb6fe2a373c74931f22bf65cf57166061f30 /eclass/python.eclass | |
parent | stable ppc, bug #429014 (diff) | |
download | historical-ee9bbcf4032ed57dd77c08a6cbd0d8c708bfd4cc.tar.gz historical-ee9bbcf4032ed57dd77c08a6cbd0d8c708bfd4cc.tar.bz2 historical-ee9bbcf4032ed57dd77c08a6cbd0d8c708bfd4cc.zip |
Add 3.3 as a supported python abi for testing.
Diffstat (limited to 'eclass/python.eclass')
-rw-r--r-- | eclass/python.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass index 177992188e2b..d98e36be5df1 100644 --- a/eclass/python.eclass +++ b/eclass/python.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.159 2012/09/27 22:42:48 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.160 2012/10/02 01:22:57 floppym Exp $ # @ECLASS: python.eclass # @MAINTAINER: @@ -28,7 +28,7 @@ if ! has "${EAPI:-0}" 0 1 2 3 4 5; then fi _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) -_CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) +_CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2 3.3) _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8 2.7-pypy-1.9) _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |