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 142DD139085 for ; Tue, 3 Jan 2017 10:33:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7097BE0D95; Tue, 3 Jan 2017 10:33:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A468E0D96 for ; Tue, 3 Jan 2017 10:33:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B497341027 for ; Tue, 3 Jan 2017 10:33:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0E7E24EC for ; Tue, 3 Jan 2017 10:33:48 +0000 (UTC) From: "Marius Brehler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marius Brehler" Message-ID: <1483439498.5779aefce387c28ca612f150d079755e1c136bad.marbre@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/nbformat/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/nbformat/nbformat-9999.ebuild X-VCS-Directories: dev-python/nbformat/ X-VCS-Committer: marbre X-VCS-Committer-Name: Marius Brehler X-VCS-Revision: 5779aefce387c28ca612f150d079755e1c136bad X-VCS-Branch: master Date: Tue, 3 Jan 2017 10:33:48 +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-Archives-Salt: f225155e-aa0f-489a-ac19-7a1a6bcc6fad X-Archives-Hash: dbb92c667fa48b06104a803ad33d9f49 commit: 5779aefce387c28ca612f150d079755e1c136bad Author: Marius Brehler linux sungazer de> AuthorDate: Tue Jan 3 10:31:38 2017 +0000 Commit: Marius Brehler linux sungazer de> CommitDate: Tue Jan 3 10:31:38 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5779aefc dev-python/nbformat: Bump to EAPI=6, fix deps and testing Package-Manager: portage-2.3.0 dev-python/nbformat/nbformat-9999.ebuild | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/dev-python/nbformat/nbformat-9999.ebuild b/dev-python/nbformat/nbformat-9999.ebuild index a823d00..aa36b64 100644 --- a/dev-python/nbformat/nbformat-9999.ebuild +++ b/dev-python/nbformat/nbformat-9999.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python2_7 python3_{4,5} ) PYTHON_REQ_USE='sqlite' @@ -18,9 +18,9 @@ SLOT="0" IUSE="doc test" RDEPEND=" - dev-python/jsonschema[${PYTHON_USEDEP}] + >=dev-python/jsonschema-2.4.0[${PYTHON_USEDEP}] dev-python/ipython_genutils[${PYTHON_USEDEP}] - dev-python/traitlets[${PYTHON_USEDEP}] + >=dev-python/traitlets-4.1[${PYTHON_USEDEP}] dev-python/jupyter_core[${PYTHON_USEDEP}] " DEPEND="${RDEPEND} @@ -29,8 +29,9 @@ DEPEND="${RDEPEND} dev-python/numpydoc[${PYTHON_USEDEP}] ) test? ( - dev-python/nose[${PYTHON_USEDEP}] - dev-python/coverage[${PYTHON_USEDEP}] + dev-python/testpath[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] ) " @@ -50,7 +51,7 @@ python_compile_all() { python_test() { distutils_install_for_testing cd "${TEST_DIR}"/lib || die - nosetests --with-coverage --cover-package=nbformat nbformat || die + py.test -v --cov nbformat nbformat || die } python_install_all() {