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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 66B7D158020 for ; Sat, 5 Nov 2022 05:00:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 973FDE0837; Sat, 5 Nov 2022 05:00:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7997AE0837 for ; Sat, 5 Nov 2022 05:00:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A45E34124C for ; Sat, 5 Nov 2022 05:00:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD0AB710 for ; Sat, 5 Nov 2022 05:00:03 +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: <1667624397.c9563b2ee37fa58df631b20535ce366e966c0558.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/statsmodels/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/statsmodels/statsmodels-0.13.5.ebuild X-VCS-Directories: dev-python/statsmodels/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c9563b2ee37fa58df631b20535ce366e966c0558 X-VCS-Branch: master Date: Sat, 5 Nov 2022 05:00:03 +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: 174a3d57-e543-4ff9-afce-b8774105744d X-Archives-Hash: 4c37aa697715a6d46c3b3f516695da3b commit: c9563b2ee37fa58df631b20535ce366e966c0558 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 5 04:27:10 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 5 04:59:57 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9563b2e dev-python/statsmodels: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/statsmodels/statsmodels-0.13.5.ebuild | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/dev-python/statsmodels/statsmodels-0.13.5.ebuild b/dev-python/statsmodels/statsmodels-0.13.5.ebuild index 5caea8067c6e..ee45e827714e 100644 --- a/dev-python/statsmodels/statsmodels-0.13.5.ebuild +++ b/dev-python/statsmodels/statsmodels-0.13.5.ebuild @@ -4,29 +4,37 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) + inherit distutils-r1 multiprocessing optfeature DESCRIPTION="Statistical computations and models for use with SciPy" -HOMEPAGE="https://www.statsmodels.org/stable/index.html" +HOMEPAGE=" + https://www.statsmodels.org/stable/index.html + https://github.com/statsmodels/statsmodels/ + https://pypi.org/project/statsmodels/ +" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux" IUSE="examples" DEPEND=" >=dev-python/numpy-1.17[${PYTHON_USEDEP}] - >=dev-python/scipy-1.3[${PYTHON_USEDEP}]" -RDEPEND="${DEPEND} + >=dev-python/scipy-1.3[${PYTHON_USEDEP}] +" +RDEPEND=" + ${DEPEND} >=dev-python/numpy-1.17[${PYTHON_USEDEP}] >=dev-python/packaging-21.3[${PYTHON_USEDEP}] >=dev-python/pandas-0.25[${PYTHON_USEDEP}] >=dev-python/patsy-0.5.2[${PYTHON_USEDEP}] >=dev-python/scipy-1.3[${PYTHON_USEDEP}] " -BDEPEND="${DEPEND} +BDEPEND=" + ${DEPEND} dev-python/cython[${PYTHON_USEDEP}] test? ( dev-python/pytest-xdist[${PYTHON_USEDEP}] @@ -62,8 +70,7 @@ python_test() { ) cd "${BUILD_DIR}/install$(python_get_sitedir)" || die - epytest ${PN} -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" - rm -r ${PN}/.pytest_cache || die + epytest ${PN} -n "$(makeopts_jobs)" } python_install_all() {