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/cffi/
Date: Wed, 05 May 2021 19:14:05
Message-Id: 1620242034.d643860ad6acd14b0916b534ac07d092b176db03.mgorny@gentoo
1 commit: d643860ad6acd14b0916b534ac07d092b176db03
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 5 19:10:48 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed May 5 19:13:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d643860a
7
8 dev-python/cffi: Enable python3.10
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cffi/cffi-1.14.5.ebuild | 7 +++----
13 1 file changed, 3 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-python/cffi/cffi-1.14.5.ebuild b/dev-python/cffi/cffi-1.14.5.ebuild
16 index 7aa72a4b5ad..d329f87995f 100644
17 --- a/dev-python/cffi/cffi-1.14.5.ebuild
18 +++ b/dev-python/cffi/cffi-1.14.5.ebuild
19 @@ -5,7 +5,7 @@ EAPI=7
20
21 # DO NOT ADD pypy to PYTHON_COMPAT
22 # pypy bundles a modified version of cffi. Use python_gen_cond_dep instead.
23 -PYTHON_COMPAT=( python3_{7..9} )
24 +PYTHON_COMPAT=( python3_{7..10} )
25
26 inherit distutils-r1 toolchain-funcs
27
28 @@ -46,9 +46,8 @@ src_configure() {
29
30 python_test() {
31 "${EPYTHON}" -c "import _cffi_backend as backend" || die
32 - pytest -x -vv \
33 + epytest \
34 --ignore testing/test_zintegration.py \
35 --ignore testing/embedding \
36 - c/ testing/ \
37 - || die "Testing failed with ${EPYTHON}"
38 + c/ testing/
39 }