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 7773B13835A for ; Wed, 5 May 2021 17:06:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C2FEE08C4; Wed, 5 May 2021 17:06:00 +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 5B086E08C4 for ; Wed, 5 May 2021 17:06:00 +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 0FFFA33D3C5 for ; Wed, 5 May 2021 17:05:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6127075F for ; Wed, 5 May 2021 17:05:56 +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: <1620234341.ec9c2f5f1a45f75d1bf9db46ead36de4df98a920.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sortedcontainers/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild X-VCS-Directories: dev-python/sortedcontainers/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ec9c2f5f1a45f75d1bf9db46ead36de4df98a920 X-VCS-Branch: master Date: Wed, 5 May 2021 17:05:56 +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: 3fb532ed-0fa9-4e66-8c16-553c752475f3 X-Archives-Hash: 7c7f9fe12a6d2744366a698accf36670 commit: ec9c2f5f1a45f75d1bf9db46ead36de4df98a920 Author: Michał Górny gentoo org> AuthorDate: Wed May 5 14:26:16 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed May 5 17:05:41 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec9c2f5f dev-python/sortedcontainers: Enable python3.10 Signed-off-by: Michał Górny gentoo.org> dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild b/dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild index 10cc79be236..8f7ca5dd0de 100644 --- a/dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild +++ b/dev-python/sortedcontainers/sortedcontainers-2.3.0.ebuild @@ -1,8 +1,8 @@ -# 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,8,9} pypy3 ) +PYTHON_COMPAT=( python3_{7..10} pypy3 ) inherit distutils-r1 @@ -24,5 +24,5 @@ distutils_enable_tests pytest python_test() { local -x PYTHONPATH=. - pytest -vv --ignore docs/conf.py || die "Tests fail with ${EPYTHON}" + epytest --ignore docs/conf.py }