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 07735158011 for ; Mon, 20 Sep 2021 16:17:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 626C2E09E6; Mon, 20 Sep 2021 16:17:51 +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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49D59E09E6 for ; Mon, 20 Sep 2021 16:17: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-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 144EA342EE0 for ; Mon, 20 Sep 2021 16:17:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 65E6AA7 for ; Mon, 20 Sep 2021 16:17:48 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1632154657.ec0ae62a43d57fec53e8f82ee2f47d6636ae6817.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cov-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cov-core/cov-core-1.15.0-r2.ebuild X-VCS-Directories: dev-python/cov-core/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: ec0ae62a43d57fec53e8f82ee2f47d6636ae6817 X-VCS-Branch: master Date: Mon, 20 Sep 2021 16:17: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f8ab2899-2ed3-468b-9372-3fd1e4fa1068 X-Archives-Hash: fc96a72315b943d3717d9826cd4dcb73 commit: ec0ae62a43d57fec53e8f82ee2f47d6636ae6817 Author: Arthur Zamarin gentoo org> AuthorDate: Mon Sep 20 16:17:37 2021 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Mon Sep 20 16:17:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec0ae62a dev-python/cov-core: enable py3.10 Signed-off-by: Arthur Zamarin gentoo.org> dev-python/cov-core/cov-core-1.15.0-r2.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dev-python/cov-core/cov-core-1.15.0-r2.ebuild b/dev-python/cov-core/cov-core-1.15.0-r2.ebuild index 1e4defcec7f..53aa9ff78d2 100644 --- a/dev-python/cov-core/cov-core-1.15.0-r2.ebuild +++ b/dev-python/cov-core/cov-core-1.15.0-r2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} pypy3 ) +PYTHON_COMPAT=( python3_{8..10} pypy3 ) inherit distutils-r1 DESCRIPTION="plugin core for use by pytest-cov, nose-cov and nose2-cov" @@ -13,7 +13,5 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="" RDEPEND=">=dev-python/coverage-3.6[${PYTHON_USEDEP}]" -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"