From: Michał Górny Date: Fri, 24 Apr 2020 19:40:11 +0000 (+0200) Subject: dev-python/ntplib: Enable py3.{7,8} X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f9fabc59b0c9c193d38579876263652fcc297be0;p=gentoo.git dev-python/ntplib: Enable py3.{7,8} Signed-off-by: Michał Górny --- diff --git a/dev-python/ntplib/ntplib-0.3.3.ebuild b/dev-python/ntplib/ntplib-0.3.3.ebuild index 37e5fcbc114c..11967a49ea26 100644 --- a/dev-python/ntplib/ntplib-0.3.3.ebuild +++ b/dev-python/ntplib/ntplib-0.3.3.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python3_6 ) +PYTHON_COMPAT=( python3_{6,7,8} ) inherit distutils-r1 @@ -18,5 +18,5 @@ IUSE="" RESTRICT="test" python_test() { - "${PYTHON:-python}" ./test_ntplib.py + "${EPYTHON}" ./test_ntplib.py || die }