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 E0B561392E8 for ; Fri, 2 Jul 2021 18:59:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7C8CE08FB; Fri, 2 Jul 2021 18:59:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 9CD0DE08FA for ; Fri, 2 Jul 2021 18:59:21 +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 8C382335DEF for ; Fri, 2 Jul 2021 18:59:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1EBAF7A1 for ; Fri, 2 Jul 2021 18:59:19 +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: <1625252353.1d287ca619dbe2297bae0fd581957dc658132378.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/networkx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/networkx/networkx-2.5.ebuild X-VCS-Directories: dev-python/networkx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1d287ca619dbe2297bae0fd581957dc658132378 X-VCS-Branch: master Date: Fri, 2 Jul 2021 18:59:19 +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: a9ab64f4-b520-45bb-83f9-033840c36760 X-Archives-Hash: 91cdba75223dea6629c7a4cf5234bd90 commit: 1d287ca619dbe2297bae0fd581957dc658132378 Author: Michał Górny gentoo org> AuthorDate: Fri Jul 2 17:36:16 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jul 2 18:59:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d287ca6 dev-python/networkx: Enable py3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/networkx/networkx-2.5.ebuild | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/dev-python/networkx/networkx-2.5.ebuild b/dev-python/networkx/networkx-2.5.ebuild index 4b84379523f..07663274858 100644 --- a/dev-python/networkx/networkx-2.5.ebuild +++ b/dev-python/networkx/networkx-2.5.ebuild @@ -3,11 +3,11 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 virtualx DESCRIPTION="Python tools to manipulate graphs and complex networks" -HOMEPAGE="https://networkx.github.io/ https://github.com/networkx/networkx" +HOMEPAGE="https://networkx.org/ https://github.com/networkx/networkx" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" @@ -27,7 +27,9 @@ RDEPEND=" ' python3_{6,7,8}) ) pandas? ( - >=dev-python/pandas-0.23.3[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >=dev-python/pandas-0.23.3[${PYTHON_USEDEP}] + ' python3_{8..9}) ) scipy? ( >=dev-python/scipy-1.1.0[${PYTHON_USEDEP}] ) xml? ( >=dev-python/lxml-4.2.3[${PYTHON_USEDEP}] ) @@ -39,8 +41,12 @@ BDEPEND=" distutils_enable_tests pytest -src_test() { - virtx distutils-r1_src_test +python_test() { + local deselect=( + # pyyaml upgrade-related regression? + networkx/readwrite/tests/test_yaml.py + ) + virtx epytest -p no:django ${deselect[@]/#/--deselect } } python_install_all() {