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 900BE138350 for ; Tue, 24 Mar 2020 07:23:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72A18E0948; Tue, 24 Mar 2020 07:23: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 541B4E0948 for ; Tue, 24 Mar 2020 07:23: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 BCAD434EEA6 for ; Tue, 24 Mar 2020 07:23:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5C5B102 for ; Tue, 24 Mar 2020 07:23:20 +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: <1585034588.b67c4e0c7656b37ec311b97eea56d384961b9b1c.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/pybids/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/pybids/pybids-0.10.2.ebuild sci-libs/pybids/pybids-9999.ebuild X-VCS-Directories: sci-libs/pybids/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: b67c4e0c7656b37ec311b97eea56d384961b9b1c X-VCS-Branch: master Date: Tue, 24 Mar 2020 07:23:20 +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: 42bcf44c-d9f6-490c-85f3-af07b3f7dd49 X-Archives-Hash: d8de5c769adbe508410e2b6afcc90f6d commit: b67c4e0c7656b37ec311b97eea56d384961b9b1c Author: Horea Christian chymera eu> AuthorDate: Tue Mar 24 07:23:08 2020 +0000 Commit: Horea Christian gmail 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 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 }