commit: bb3327e8e2e35ef8e460365ab01a9efd2576429d
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Mon Mar 23 02:23:23 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> 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 <chr <AT> 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
}