Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/flask-debug/
Date: Tue, 23 Oct 2018 20:13:50
Message-Id: 1540325616.86300443da90f823ce94459086a662a124e77204.sbraz@gentoo
1 commit: 86300443da90f823ce94459086a662a124e77204
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 23 08:57:24 2018 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 23 20:13:36 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86300443
7
8 dev-python/flask-debug: add Python 3.7 support
9
10 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-python/flask-debug/flask-debug-0.4.3.ebuild | 6 +++---
14 1 file changed, 3 insertions(+), 3 deletions(-)
15
16 diff --git a/dev-python/flask-debug/flask-debug-0.4.3.ebuild b/dev-python/flask-debug/flask-debug-0.4.3.ebuild
17 index cccb072ac7a..fc044605a78 100644
18 --- a/dev-python/flask-debug/flask-debug-0.4.3.ebuild
19 +++ b/dev-python/flask-debug/flask-debug-0.4.3.ebuild
20 @@ -1,8 +1,8 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2018 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 -PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} )
27 +PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6,7}} )
28
29 inherit distutils-r1
30
31 @@ -47,5 +47,5 @@ python_compile_all() {
32 }
33
34 python_test() {
35 - py.test || die "Tests failed with ${EPYTHON}"
36 + pytest -vv || die "Tests failed with ${EPYTHON}"
37 }