Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vecrec/
Date: Mon, 13 Sep 2021 18:43:14
Message-Id: 1631558127.e6a4f6060a2bcca8d48007affd8749b11a36ea46.arthurzam@gentoo
1 commit: e6a4f6060a2bcca8d48007affd8749b11a36ea46
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 13 18:35:27 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 13 18:35:27 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6a4f606
7
8 dev-python/vecrec: enable py3.10
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/vecrec/vecrec-0.3.0.ebuild | 10 +++++-----
13 1 file changed, 5 insertions(+), 5 deletions(-)
14
15 diff --git a/dev-python/vecrec/vecrec-0.3.0.ebuild b/dev-python/vecrec/vecrec-0.3.0.ebuild
16 index 39e023068ff..b0729371a7b 100644
17 --- a/dev-python/vecrec/vecrec-0.3.0.ebuild
18 +++ b/dev-python/vecrec/vecrec-0.3.0.ebuild
19 @@ -1,9 +1,9 @@
20 -# Copyright 1999-2020 Gentoo Authors
21 +# Copyright 1999-2021 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=7
25 +EAPI=8
26
27 -PYTHON_COMPAT=( python3_{7..9} )
28 +PYTHON_COMPAT=( python3_{8..10} )
29
30 inherit distutils-r1
31
32 @@ -11,13 +11,13 @@ DESCRIPTION="2D vector and rectangle classes"
33 HOMEPAGE="https://github.com/kxgames/vecrec
34 https://pypi.org/project/vecrec/"
35 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
36 -LICENSE="MIT"
37
38 +LICENSE="MIT"
39 KEYWORDS="~amd64"
40 SLOT="0"
41
42 distutils_enable_tests pytest
43
44 python_test() {
45 - pytest -vv tests || die "Tests fail with ${EPYTHON}"
46 + epytest tests
47 }