commit: b67c4e0c7656b37ec311b97eea56d384961b9b1c
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Tue Mar 24 07:23:08 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Tue Mar 24 07:23:08 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b67c4e0c
sci-libs/pybids: version bump 0.10.2
and PYTHON_COMPAT update to include 3_7
Package-Manager: Portage-2.3.94, Repoman-2.3.21
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
.../{pybids-9999.ebuild => pybids-0.10.2.ebuild} | 26 ++++++++++++----------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/sci-libs/pybids/pybids-9999.ebuild
b/sci-libs/pybids/pybids-0.10.2.ebuild
similarity index 51%
rename from sci-libs/pybids/pybids-9999.ebuild
rename to sci-libs/pybids/pybids-0.10.2.ebuild
index 5d2e6eff9..8b30eeb0d 100644
--- a/sci-libs/pybids/pybids-9999.ebuild
+++ b/sci-libs/pybids/pybids-0.10.2.ebuild
@@ -3,35 +3,37 @@
EAPI=7
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python3_{6,7} )
-inherit distutils-r1 git-r3
+inherit distutils-r1
DESCRIPTION="Python package to access BIDS datasets"
HOMEPAGE="https://github.com/INCF/pybids"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/INCF/pybids"
+SRC_URI="https://github.com/INCF/pybids/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64"
IUSE="test"
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- test? ( dev-python/pytest[${PYTHON_USEDEP}] )
- "
+DEPEND=""
RDEPEND="
- dev-python/grabbit[${PYTHON_USEDEP}]
dev-python/num2words[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
dev-python/patsy[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]
+ dev-python/sqlalchemy[${PYTHON_USEDEP}]
+ sci-libs/bids-validator[${PYTHON_USEDEP}]
sci-libs/nibabel[${PYTHON_USEDEP}]
sci-libs/scipy[${PYTHON_USEDEP}]
"
+#RESTRICT="test"
+# Fails because fixtures are called directly
+# https://github.com/bids-standard/pybids/issues/289#issuecomment-476853673
+
python_test() {
- py.test -v || die
+ #rm bids/tests/test_config.py || die
+ distutils_install_for_testing
+ pytest -vv || die
}