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 25B22158018 for ; Sat, 2 Oct 2021 07:50:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 937BEE08C8; Sat, 2 Oct 2021 07:50:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7B66EE08C8 for ; Sat, 2 Oct 2021 07:50:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 30B8B342E6C for ; Sat, 2 Oct 2021 07:50:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1B48148 for ; Sat, 2 Oct 2021 07:50:52 +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: <1633161045.66b8d814670a3d63c77d9ca7bd5dfee00d1516a2.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.12.2-r1.ebuild dev-python/statsmodels/statsmodels-0.13.0.ebuild X-VCS-Directories: dev-python/statsmodels/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 66b8d814670a3d63c77d9ca7bd5dfee00d1516a2 X-VCS-Branch: master Date: Sat, 2 Oct 2021 07:50:52 +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: 56349243-45fd-43a4-b078-b0a9e770dc9e X-Archives-Hash: fe39159122cce95482a9d66d524e9fc9 commit: 66b8d814670a3d63c77d9ca7bd5dfee00d1516a2 Author: Michał Górny gentoo org> AuthorDate: Sat Oct 2 07:18:05 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Oct 2 07:50:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66b8d814 dev-python/statsmodels: Add missing multiprocessing inherit Signed-off-by: Michał Górny gentoo.org> dev-python/statsmodels/statsmodels-0.12.2-r1.ebuild | 2 +- dev-python/statsmodels/statsmodels-0.13.0.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/statsmodels/statsmodels-0.12.2-r1.ebuild b/dev-python/statsmodels/statsmodels-0.12.2-r1.ebuild index 6b264c763a8..5f70e512375 100644 --- a/dev-python/statsmodels/statsmodels-0.12.2-r1.ebuild +++ b/dev-python/statsmodels/statsmodels-0.12.2-r1.ebuild @@ -5,7 +5,7 @@ EAPI=7 PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 optfeature +inherit distutils-r1 multiprocessing optfeature DESCRIPTION="Statistical computations and models for use with SciPy" HOMEPAGE="https://www.statsmodels.org/stable/index.html" diff --git a/dev-python/statsmodels/statsmodels-0.13.0.ebuild b/dev-python/statsmodels/statsmodels-0.13.0.ebuild index 4aa7914a265..dca696dc792 100644 --- a/dev-python/statsmodels/statsmodels-0.13.0.ebuild +++ b/dev-python/statsmodels/statsmodels-0.13.0.ebuild @@ -5,7 +5,7 @@ EAPI=8 PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 optfeature +inherit distutils-r1 multiprocessing optfeature DESCRIPTION="Statistical computations and models for use with SciPy" HOMEPAGE="https://www.statsmodels.org/stable/index.html"