Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/nnpy/
Date: Mon, 07 Sep 2020 09:19:48
Message-Id: 1599470378.43158a3c4246637e5754d0ddd07f771db5e9ef02.aballier@gentoo
1 commit: 43158a3c4246637e5754d0ddd07f771db5e9ef02
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 7 09:19:26 2020 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 7 09:19:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43158a3c
7
8 dev-python/nnpy: add py37/8/9
9
10 bump eapi too
11
12 Closes: https://bugs.gentoo.org/737366
13 Package-Manager: Portage-3.0.5, Repoman-3.0.1
14 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
15
16 dev-python/nnpy/nnpy-1.4.2.ebuild | 6 +++---
17 1 file changed, 3 insertions(+), 3 deletions(-)
18
19 diff --git a/dev-python/nnpy/nnpy-1.4.2.ebuild b/dev-python/nnpy/nnpy-1.4.2.ebuild
20 index 5f229a8e0b4..2f5fb5ec461 100644
21 --- a/dev-python/nnpy/nnpy-1.4.2.ebuild
22 +++ b/dev-python/nnpy/nnpy-1.4.2.ebuild
23 @@ -1,9 +1,9 @@
24 # Copyright 1999-2020 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=5
28 +EAPI=7
29
30 -PYTHON_COMPAT=( python3_6 )
31 +PYTHON_COMPAT=( python3_{6,7,8,9} )
32
33 inherit distutils-r1
34
35 @@ -23,5 +23,5 @@ DEPEND="
36 RDEPEND="${DEPEND}"
37
38 python_test() {
39 - PYTHONPATH="${S}:${PYTHONPATH}" "${PYTHON}" "${S}/nnpy/tests.py" || die
40 + PYTHONPATH="${S}:${PYTHONPATH}" "${PYTHON}" -m nnpy.tests || die
41 }