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 25226158090 for ; Sun, 15 May 2022 11:15:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3350BE08FC; Sun, 15 May 2022 11:15:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 19FD1E08FC for ; Sun, 15 May 2022 11:15:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 363B5341C96 for ; Sun, 15 May 2022 11:15:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA53E105 for ; Sun, 15 May 2022 11:15:32 +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: <1652613330.55242a46d2bd1bb604fd9e45c6f9d0d6137b00c3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-httpx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pytest-httpx/pytest-httpx-0.20.0.ebuild X-VCS-Directories: dev-python/pytest-httpx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 55242a46d2bd1bb604fd9e45c6f9d0d6137b00c3 X-VCS-Branch: master Date: Sun, 15 May 2022 11:15:32 +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: a8ef3607-1d67-4d81-9718-e524774b90f4 X-Archives-Hash: 0a00919ccf118e06c7eef53dbf14cbbf commit: 55242a46d2bd1bb604fd9e45c6f9d0d6137b00c3 Author: Michał Górny gentoo org> AuthorDate: Sun May 15 11:13:19 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 15 11:15:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55242a46 dev-python/pytest-httpx: Enable py3.11 Signed-off-by: Michał Górny gentoo.org> dev-python/pytest-httpx/pytest-httpx-0.20.0.ebuild | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/dev-python/pytest-httpx/pytest-httpx-0.20.0.ebuild b/dev-python/pytest-httpx/pytest-httpx-0.20.0.ebuild index 74125eb14438..c43d99511ed4 100644 --- a/dev-python/pytest-httpx/pytest-httpx-0.20.0.ebuild +++ b/dev-python/pytest-httpx/pytest-httpx-0.20.0.ebuild @@ -4,15 +4,19 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 MY_PN="${PN/-/_}" DESCRIPTION="Send responses to HTTPX using pytest" -HOMEPAGE="https://colin-b.github.io/pytest_httpx/" +HOMEPAGE=" + https://colin-b.github.io/pytest_httpx/ + https://github.com/Colin-b/pytest_httpx/ + https://pypi.org/project/pytest-httpx/ +" SRC_URI=" - https://github.com/Colin-b/${MY_PN}/archive/v${PV}.tar.gz + https://github.com/Colin-b/pytest_httpx/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz " S="${WORKDIR}/${MY_PN}-${PV}"