diff options
author | David Seifert <soap@gentoo.org> | 2019-12-28 17:16:34 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-28 17:16:34 +0100 |
commit | 531c22bef317703f824e4c4835b357328a5754bf (patch) | |
tree | e0c075724a7b0eca2a9bdc2673316309002aafbc /dev-python | |
parent | dev-python/zake: Remove Py2 (diff) | |
download | gentoo-531c22bef317703f824e4c4835b357328a5754bf.tar.gz gentoo-531c22bef317703f824e4c4835b357328a5754bf.tar.bz2 gentoo-531c22bef317703f824e4c4835b357328a5754bf.zip |
dev-python/zc-buildout: Remove Py2
Package-Manager: Portage-2.3.83, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild index fdff18c3a853..7e50c6d015f2 100644 --- a/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild +++ b/dev-python/zc-buildout/zc-buildout-2.5.3-r1.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=5 -PYTHON_COMPAT=( python{2_7,3_5,3_6} pypy pypy3 ) +PYTHON_COMPAT=( python3_{5,6} pypy3 ) inherit distutils-r1 @@ -17,7 +17,8 @@ LICENSE="ZPL" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" -RESTRICT="!test? ( test )" +# Tests are broken +RESTRICT="test" RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} @@ -34,11 +35,6 @@ python_prepare_all() { } python_test() { - if python_is_python3; then - ewarn "Tests are broken for ${EPYTHON}, skipping" - continue - fi - distutils_install_for_testing "${PYTHON}" src/zc/buildout/tests.py || die "Tests fail with ${EPYTHON}" } |