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 C7521138354 for ; Mon, 23 Mar 2020 14:49:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D58CFE0ACF; Mon, 23 Mar 2020 14:49:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B69B7E0AFB for ; Mon, 23 Mar 2020 14:49:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D625C34F898 for ; Mon, 23 Mar 2020 14:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B98DE1A3 for ; Mon, 23 Mar 2020 02:24:40 +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: <1584930203.bb3327e8e2e35ef8e460365ab01a9efd2576429d.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/dipy/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/dipy/dipy-0.14.0.ebuild sci-biology/dipy/dipy-1.1.1.ebuild X-VCS-Directories: sci-biology/dipy/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: bb3327e8e2e35ef8e460365ab01a9efd2576429d X-VCS-Branch: master Date: Mon, 23 Mar 2020 02:24:40 +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: 1ab62e8f-24a9-4804-8435-f186d4d79c78 X-Archives-Hash: 00815d7cf5bae2c65dbd3ae6fbf91b56 commit: bb3327e8e2e35ef8e460365ab01a9efd2576429d Author: Horea Christian chymera eu> AuthorDate: Mon Mar 23 02:23:23 2020 +0000 Commit: Horea Christian gmail com> CommitDate: Mon Mar 23 02:23:23 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=bb3327e8 sci-biology/dipy: version bump 1.1.1 Package-Manager: Portage-2.3.94, Repoman-2.3.21 Signed-off-by: Horea Christian chymera.eu> .../dipy/{dipy-0.14.0.ebuild => dipy-1.1.1.ebuild} | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/sci-biology/dipy/dipy-0.14.0.ebuild b/sci-biology/dipy/dipy-1.1.1.ebuild similarity index 68% rename from sci-biology/dipy/dipy-0.14.0.ebuild rename to sci-biology/dipy/dipy-1.1.1.ebuild index 2d76b74a2..09d937d61 100644 --- a/sci-biology/dipy/dipy-0.14.0.ebuild +++ b/sci-biology/dipy/dipy-1.1.1.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=6 +EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{4,5} ) +PYTHON_COMPAT=( python3_{6,7} ) inherit distutils-r1 @@ -22,17 +22,18 @@ RDEPEND=" sci-libs/scipy[${PYTHON_USEDEP}] " DEPEND=" + dev-python/packaging[${PYTHON_USEDEP}] dev-python/cython[${PYTHON_USEDEP}] dev-python/h5py[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose[${PYTHON_USEDEP}] ) + test? ( dev-python/pytest[${PYTHON_USEDEP}] ) " -# Tests for this release fail: https://github.com/nipy/dipy/issues/1531 +# Tests fail because they require data download: +# https://github.com/dipy/dipy/issues/2092 RESTRICT="test" python_test() { distutils_install_for_testing cd "${TEST_DIR}"/lib || die - nosetests || die + pytest -m "not network" || die }