From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id AFEF71580F6 for ; Sat, 08 Nov 2025 18:23:33 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 98BB7341736 for ; Sat, 08 Nov 2025 18:23:33 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 47E7B11057A; Sat, 08 Nov 2025 18:23:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 42C7411057A for ; Sat, 08 Nov 2025 18:23:18 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04A99341994 for ; Sat, 08 Nov 2025 18:23:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 337893C7D for ; Sat, 08 Nov 2025 18:23:15 +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: <1762626189.c8d965f18d452180bf5bce89f7af34af39572c1c.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.35.0-r1.ebuild dev-python/pytest-httpx/pytest-httpx-0.35.0.ebuild X-VCS-Directories: dev-python/pytest-httpx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c8d965f18d452180bf5bce89f7af34af39572c1c X-VCS-Branch: master Date: Sat, 08 Nov 2025 18:23:15 +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: 2147676c-df3a-4a62-bbf3-e5c2864ed735 X-Archives-Hash: 817a9ef0a1ca2d67871c2758f7372d0d commit: c8d965f18d452180bf5bce89f7af34af39572c1c Author: Michał Górny gentoo org> AuthorDate: Sat Nov 8 18:19:15 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 8 18:23:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8d965f1 dev-python/pytest-httpx: Unpin dependencies Signed-off-by: Michał Górny gentoo.org> ...httpx-0.35.0.ebuild => pytest-httpx-0.35.0-r1.ebuild} | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/dev-python/pytest-httpx/pytest-httpx-0.35.0.ebuild b/dev-python/pytest-httpx/pytest-httpx-0.35.0-r1.ebuild similarity index 68% rename from dev-python/pytest-httpx/pytest-httpx-0.35.0.ebuild rename to dev-python/pytest-httpx/pytest-httpx-0.35.0-r1.ebuild index 6f79d6824c63..9d3e38c2f0a1 100644 --- a/dev-python/pytest-httpx/pytest-httpx-0.35.0.ebuild +++ b/dev-python/pytest-httpx/pytest-httpx-0.35.0-r1.ebuild @@ -20,14 +20,20 @@ SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86" RDEPEND=" - =dev-python/httpx-0.28*[${PYTHON_USEDEP}] - =dev-python/pytest-8*[${PYTHON_USEDEP}] + >=dev-python/httpx-0.28[${PYTHON_USEDEP}] + >=dev-python/pytest-8[${PYTHON_USEDEP}] " BDEPEND=" dev-python/setuptools-scm[${PYTHON_USEDEP}] - test? ( - dev-python/pytest-asyncio[${PYTHON_USEDEP}] - ) " +EPYTEST_PLUGINS=( "${PN}" pytest-asyncio ) +EPYTEST_PLUGIN_LOAD_VIA_ENV=1 distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + # unpin dependencies + sed -i -e '/==/{s:==:>=:;s:\.\*::}' pyproject.toml || die +}