From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0286E138350 for ; Wed, 18 Mar 2020 03:36:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CB28E0AFD; Wed, 18 Mar 2020 03:36:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E5767E0AFD for ; Wed, 18 Mar 2020 03:36:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 90D4F34F02A for ; Wed, 18 Mar 2020 03:36:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87FA6106 for ; Wed, 18 Mar 2020 03:36:08 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1584502556.ad65bea2e5e2f0cca3d4f6eda33bf5364116c398.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/pynrrd/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/pynrrd/pynrrd-0.2.2.ebuild dev-python/pynrrd/pynrrd-0.4.2.ebuild X-VCS-Directories: dev-python/pynrrd/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: ad65bea2e5e2f0cca3d4f6eda33bf5364116c398 X-VCS-Branch: master Date: Wed, 18 Mar 2020 03:36:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 717eddfb-ad09-4596-ac75-b342c314757e X-Archives-Hash: 26dbeb83d64c79a258a633e3ff25ac3c commit: ad65bea2e5e2f0cca3d4f6eda33bf5364116c398 Author: Horea Christian chymera eu> AuthorDate: Wed Mar 18 03:35:56 2020 +0000 Commit: Horea Christian gmail com> CommitDate: Wed Mar 18 03:35:56 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ad65bea2 dev-python/pynrrd: version bump 0.4.2 and PYTHON_COMPAT update to include 3_7 Package-Manager: Portage-2.3.92, Repoman-2.3.20 Signed-off-by: Horea Christian chymera.eu> dev-python/pynrrd/pynrrd-0.2.2.ebuild | 2 +- dev-python/pynrrd/{pynrrd-0.2.2.ebuild => pynrrd-0.4.2.ebuild} | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-python/pynrrd/pynrrd-0.2.2.ebuild b/dev-python/pynrrd/pynrrd-0.2.2.ebuild index 1933dd639..6fbe90d29 100644 --- a/dev-python/pynrrd/pynrrd-0.2.2.ebuild +++ b/dev-python/pynrrd/pynrrd-0.2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 diff --git a/dev-python/pynrrd/pynrrd-0.2.2.ebuild b/dev-python/pynrrd/pynrrd-0.4.2.ebuild similarity index 77% copy from dev-python/pynrrd/pynrrd-0.2.2.ebuild copy to dev-python/pynrrd/pynrrd-0.4.2.ebuild index 1933dd639..bff3e2570 100644 --- a/dev-python/pynrrd/pynrrd-0.2.2.ebuild +++ b/dev-python/pynrrd/pynrrd-0.4.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +PYTHON_COMPAT=( python{3_6,3_7} ) inherit distutils-r1 @@ -20,5 +20,5 @@ RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" DEPEND="test? ( ${RDEPEND} )" python_test() { - ${EPYTHON} tests/test_nrrd.py || die + ${EPYTHON} -m unittest discover -v nrrd/tests || die }