Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-zipstream/
Date: Tue, 18 Jun 2019 07:40:24
Message-Id: 1560843607.858e2941bf4840c7175f30420d48f5237fed7382.mgorny@gentoo
1 commit: 858e2941bf4840c7175f30420d48f5237fed7382
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 18 07:36:22 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 18 07:40:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=858e2941
7
8 dev-python/python-zipstream: Enable Python 3.7
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-zipstream/python-zipstream-1.1.4.ebuild | 5 +++--
13 1 file changed, 3 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/python-zipstream/python-zipstream-1.1.4.ebuild b/dev-python/python-zipstream/python-zipstream-1.1.4.ebuild
16 index 6185735434e..df1327996cb 100644
17 --- a/dev-python/python-zipstream/python-zipstream-1.1.4.ebuild
18 +++ b/dev-python/python-zipstream/python-zipstream-1.1.4.ebuild
19 @@ -3,7 +3,7 @@
20
21 EAPI=6
22
23 -PYTHON_COMPAT=( python{2_7,3_5,3_6} )
24 +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} )
25
26 inherit distutils-r1
27
28 @@ -15,10 +15,11 @@ LICENSE="GPL-3+"
29 SLOT="0"
30 KEYWORDS="~amd64 ~x86"
31 IUSE="test"
32 +RESTRICT="!test? ( test )"
33
34 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
35 test? ( dev-python/nose[${PYTHON_USEDEP}] )"
36
37 python_test() {
38 - nosetests || die "tests failed under ${EPYTHON}"
39 + nosetests -v || die "tests failed under ${EPYTHON}"
40 }