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 0377B139345 for ; Thu, 1 Jul 2021 14:45:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F399DE08EC; Thu, 1 Jul 2021 14:45:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D441CE08E5 for ; Thu, 1 Jul 2021 14:45:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 06ADA335D3B for ; Thu, 1 Jul 2021 14:45:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C8F27C2 for ; Thu, 1 Jul 2021 14:45:29 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1625150685.06ad8727b9a3514e3f03c659517834d9d1aa87c2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/ipyparallel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild X-VCS-Directories: dev-python/ipyparallel/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 06ad8727b9a3514e3f03c659517834d9d1aa87c2 X-VCS-Branch: master Date: Thu, 1 Jul 2021 14:45:29 +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: 2720da1e-8b93-42ce-9d66-0c30b32cbafc X-Archives-Hash: 7ed6008a768939d35f952e2c04fb2fe4 commit: 06ad8727b9a3514e3f03c659517834d9d1aa87c2 Author: Michał Górny gentoo org> AuthorDate: Thu Jul 1 12:45:09 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jul 1 14:44:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06ad8727 dev-python/ipyparallel: Port to py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild b/dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild index 0bef8279f49..127af46a1d9 100644 --- a/dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild +++ b/dev-python/ipyparallel/ipyparallel-6.3.0-r1.ebuild @@ -3,10 +3,8 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) PYTHON_REQ_USE="threads(+)" -DISTUTILS_USE_SETUPTOOLS=rdepend - inherit distutils-r1 optfeature DESCRIPTION="Interactive Parallel Computing with IPython" @@ -16,8 +14,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="amd64 ~arm arm64 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="doc test" -RESTRICT="!test? ( test )" # About tests and tornado # Upstreams claims to work fine with tornado 5, and it's indeed possible to @@ -40,7 +36,6 @@ BDEPEND="${RDEPEND} test? ( dev-python/ipython[test] dev-python/mock[${PYTHON_USEDEP}] - dev-python/pytest[${PYTHON_USEDEP}] dev-python/testpath[${PYTHON_USEDEP}] ) " @@ -60,6 +55,11 @@ python_test() { ipyparallel/tests/test_view.py::TestView::test_unicode_execute ipyparallel/tests/test_view.py::TestView::test_sync_imports_quiet ) + [[ ${EPYTHON} == python3.10 ]] && deselect+=( + # failing due to irrelevant warnings + ipyparallel/tests/test_client.py::TestClient::test_local_ip_true_doesnt_trigger_warning + ipyparallel/tests/test_client.py::TestClient::test_warning_on_hostname_match + ) epytest ${deselect[@]/#/--deselect } }