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 4796D158091 for ; Sat, 11 Jun 2022 06:35:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34D53E085B; Sat, 11 Jun 2022 06:34:59 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1EA60E085B for ; Sat, 11 Jun 2022 06:34:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5601B3419AB for ; Sat, 11 Jun 2022 06:34:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B677D506 for ; Sat, 11 Jun 2022 06:34:55 +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: <1654929291.1458d4e1f8f0256a6389a753000298e2d9de7dbf.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-aiohttp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-aiohttp/pytest-aiohttp-1.0.4.ebuild X-VCS-Directories: dev-python/pytest-aiohttp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1458d4e1f8f0256a6389a753000298e2d9de7dbf X-VCS-Branch: master Date: Sat, 11 Jun 2022 06:34:55 +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: 1f7f3d61-b2b5-40a1-a07b-7a0a04df8b11 X-Archives-Hash: 8de87d58e8fdf7f717585a377b4f5b1a commit: 1458d4e1f8f0256a6389a753000298e2d9de7dbf Author: Michał Górny gentoo org> AuthorDate: Sat Jun 11 06:13:26 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jun 11 06:34:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1458d4e1 dev-python/pytest-aiohttp: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-aiohttp/pytest-aiohttp-1.0.4.ebuild | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.4.ebuild b/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.4.ebuild index 1ad54bae78d3..d009d00e3de7 100644 --- a/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.4.ebuild +++ b/dev-python/pytest-aiohttp/pytest-aiohttp-1.0.4.ebuild @@ -4,12 +4,15 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) inherit distutils-r1 DESCRIPTION="pytest plugin for aiohttp support" -HOMEPAGE="https://github.com/aio-libs/pytest-aiohttp/" +HOMEPAGE=" + https://github.com/aio-libs/pytest-aiohttp/ + https://pypi.org/project/pytest-aiohttp/ +" SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" @@ -26,3 +29,9 @@ BDEPEND=" " distutils_enable_tests pytest + +EPYTEST_DESELECT=( + # warning doesn't seem to be emitted for some reason + # doesn't look very important + tests/test_obsolete_fixtures.py::test_loop_fixture +)