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 1DD541382C5 for ; Tue, 26 May 2020 12:58:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5605AE0921; Tue, 26 May 2020 12:58:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 417B1E0921 for ; Tue, 26 May 2020 12:58:44 +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 EFEB234EE69 for ; Tue, 26 May 2020 12:58:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A86AC270 for ; Tue, 26 May 2020 12:58:39 +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: <1590497908.9f80f8828b4a8ba78a9c147c036008c8978c78da.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygments/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pygments/pygments-2.5.2.ebuild dev-python/pygments/pygments-2.6.1.ebuild X-VCS-Directories: dev-python/pygments/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9f80f8828b4a8ba78a9c147c036008c8978c78da X-VCS-Branch: master Date: Tue, 26 May 2020 12:58:39 +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: d2636734-971b-43fc-a31d-2769b40b6097 X-Archives-Hash: d9a33273c080b2d380d00500ac8f9a73 commit: 9f80f8828b4a8ba78a9c147c036008c8978c78da Author: Michał Górny gentoo org> AuthorDate: Tue May 26 12:18:52 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 26 12:58:28 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f80f882 dev-python/pygments: Port to py39 Signed-off-by: Michał Górny gentoo.org> dev-python/pygments/pygments-2.5.2.ebuild | 4 ++-- dev-python/pygments/pygments-2.6.1.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/pygments/pygments-2.5.2.ebuild b/dev-python/pygments/pygments-2.5.2.ebuild index 4f0d6aff821..8771025bd72 100644 --- a/dev-python/pygments/pygments-2.5.2.ebuild +++ b/dev-python/pygments/pygments-2.5.2.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) inherit distutils-r1 bash-completion-r1 @@ -32,7 +32,7 @@ distutils_enable_sphinx doc python_test() { cp -r -l tests "${BUILD_DIR}"/ || die - pytest "${BUILD_DIR}"/tests || die "Tests fail with ${EPYTHON}" + pytest -vv "${BUILD_DIR}"/tests || die "Tests fail with ${EPYTHON}" } python_install_all() { diff --git a/dev-python/pygments/pygments-2.6.1.ebuild b/dev-python/pygments/pygments-2.6.1.ebuild index eef8f5251bf..89bb177bba4 100644 --- a/dev-python/pygments/pygments-2.6.1.ebuild +++ b/dev-python/pygments/pygments-2.6.1.ebuild @@ -4,7 +4,7 @@ EAPI=7 DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 ) inherit distutils-r1 bash-completion-r1