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/pytest-timeout/
Date: Mon, 09 May 2022 20:39:23
Message-Id: 1652128655.662d14577395b7d3302eda1df7d918d293abb09f.mgorny@gentoo
1 commit: 662d14577395b7d3302eda1df7d918d293abb09f
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 9 19:49:49 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 9 20:37:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=662d1457
7
8 dev-python/pytest-timeout: Enable py3.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-timeout/pytest-timeout-2.1.0.ebuild | 7 +++++--
13 1 file changed, 5 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/pytest-timeout/pytest-timeout-2.1.0.ebuild b/dev-python/pytest-timeout/pytest-timeout-2.1.0.ebuild
16 index 133c5efa0b91..854117081a47 100644
17 --- a/dev-python/pytest-timeout/pytest-timeout-2.1.0.ebuild
18 +++ b/dev-python/pytest-timeout/pytest-timeout-2.1.0.ebuild
19 @@ -4,7 +4,8 @@
20 EAPI=8
21
22 DISTUTILS_USE_PEP517=setuptools
23 -PYTHON_COMPAT=( python3_{8..10} pypy3 )
24 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
25 +
26 inherit distutils-r1
27
28 DESCRIPTION="pytest plugin to abort hanging tests"
29 @@ -21,7 +22,9 @@ BDEPEND="
30 test? (
31 dev-python/pexpect[${PYTHON_USEDEP}]
32 !hppa? (
33 - dev-python/pytest-cov[${PYTHON_USEDEP}]
34 + $(python_gen_cond_dep '
35 + dev-python/pytest-cov[${PYTHON_USEDEP}]
36 + ' python3_{8..10} pypy3)
37 )
38 )"