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/jikanpy/
Date: Thu, 16 Sep 2021 19:43:24
Message-Id: 1631821232.1569128a87587dbb0107af17909a1dff7c40c70b.arthurzam@gentoo
1 commit: 1569128a87587dbb0107af17909a1dff7c40c70b
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 16 19:40:32 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 16 19:40:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1569128a
7
8 dev-python/jikanpy: enable py3.10, EAPI=8, add missing test dep
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/jikanpy/jikanpy-4.3.2.ebuild | 12 ++++++------
13 1 file changed, 6 insertions(+), 6 deletions(-)
14
15 diff --git a/dev-python/jikanpy/jikanpy-4.3.2.ebuild b/dev-python/jikanpy/jikanpy-4.3.2.ebuild
16 index 7723c4ff2c1..e806908846a 100644
17 --- a/dev-python/jikanpy/jikanpy-4.3.2.ebuild
18 +++ b/dev-python/jikanpy/jikanpy-4.3.2.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 inherit distutils-r1
29
30 DESCRIPTION="Python wrapper for jikan.moe API."
31 @@ -14,14 +14,14 @@ LICENSE="MIT"
32 SLOT="0"
33 KEYWORDS="~amd64 ~x86"
34
35 -BDEPEND="
36 - test? ( dev-python/vcrpy[${PYTHON_USEDEP}] )
37 -"
38 -
39 RDEPEND="
40 dev-python/aiohttp[${PYTHON_USEDEP}]
41 dev-python/requests[${PYTHON_USEDEP}]
42 dev-python/simplejson[${PYTHON_USEDEP}]
43 "
44 +BDEPEND="test? (
45 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
46 + dev-python/vcrpy[${PYTHON_USEDEP}]
47 +)"
48
49 distutils_enable_tests pytest