commit: c5ee7b85cafe4e073c5cb4681df7a518dd67e3c4
Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Wed Sep 14 15:15:45 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 15:15:45 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c5ee7b85
dev-python/prov: updated python compatibility and fixed test phase (#672)
Package-Manager: portage-2.3.0
dev-python/prov/prov-1.4.0.ebuild | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-python/prov/prov-1.4.0.ebuild
b/dev-python/prov/prov-1.4.0.ebuild
index cbb13de..2fe1cd4 100644
--- a/dev-python/prov/prov-1.4.0.ebuild
+++ b/dev-python/prov/prov-1.4.0.ebuild
@@ -2,9 +2,9 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI="6"
+EAPI=6
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
inherit distutils-r1
@@ -27,6 +27,6 @@ RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
>=dev-python/six-1.10[${PYTHON_USEDEP}]
"
-src_test() {
- ${PYTHON} -m unittest discover || die
+python_test() {
+ ${EPYTHON} -m unittest discover || die
}