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/ubelt/
Date: Thu, 01 Jul 2021 18:39:52
Message-Id: 1625164784.6694617d22b2ba919f7b3ebec6c3b7240053e12b.mgorny@gentoo
1 commit: 6694617d22b2ba919f7b3ebec6c3b7240053e12b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 1 18:38:04 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 1 18:39:44 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6694617d
7
8 dev-python/ubelt: Port to py3.10
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ubelt/ubelt-0.9.5.ebuild | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-python/ubelt/ubelt-0.9.5.ebuild b/dev-python/ubelt/ubelt-0.9.5.ebuild
16 index 1505cc0f7ac..e906563da37 100644
17 --- a/dev-python/ubelt/ubelt-0.9.5.ebuild
18 +++ b/dev-python/ubelt/ubelt-0.9.5.ebuild
19 @@ -1,9 +1,9 @@
20 # Copyright 1999-2021 Gentoo Authors
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=7
24 +EAPI=8
25
26 -PYTHON_COMPAT=( python3_{7..9} )
27 +PYTHON_COMPAT=( python3_{8..10} )
28
29 inherit distutils-r1
30
31 @@ -28,6 +28,5 @@ python_test() {
32 ubelt/util_path.py::userhome:0
33 )
34
35 - pytest -vv ${deselect[@]/#/--deselect } tests ||
36 - die "Tests fail with ${EPYTHON}"
37 + epytest ${deselect[@]/#/--deselect } tests
38 }