From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1474634-garchives=archives.gentoo.org@lists.gentoo.org>
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 05140158010
	for <garchives@archives.gentoo.org>; Sat,  7 Jan 2023 04:54:19 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 18DB6E0855;
	Sat,  7 Jan 2023 04:54:15 +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 F1D92E0855
	for <gentoo-commits@lists.gentoo.org>; Sat,  7 Jan 2023 04:54:14 +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 66AFD340E7E
	for <gentoo-commits@lists.gentoo.org>; Sat,  7 Jan 2023 04:54:13 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id C413984D
	for <gentoo-commits@lists.gentoo.org>; Sat,  7 Jan 2023 04:54:10 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
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" <mgorny@gentoo.org>
Message-ID: <1673067226.7e95f5b44bc1077f7b6eb6a550bb06666a0d62ff.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httpx/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/httpx/httpx-0.23.3-r1.ebuild dev-python/httpx/httpx-0.23.3.ebuild
X-VCS-Directories: dev-python/httpx/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: 7e95f5b44bc1077f7b6eb6a550bb06666a0d62ff
X-VCS-Branch: master
Date: Sat,  7 Jan 2023 04:54:10 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: ba7caff8-be20-438b-9e02-42052d83670f
X-Archives-Hash: c88694b826c9cfdd30fa98f0f7bfc72d

commit:     7e95f5b44bc1077f7b6eb6a550bb06666a0d62ff
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  7 04:19:34 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan  7 04:53:46 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e95f5b4

dev-python/httpx: Unpin dev-python/rich

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/httpx/{httpx-0.23.3.ebuild => httpx-0.23.3-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/httpx/httpx-0.23.3.ebuild b/dev-python/httpx/httpx-0.23.3-r1.ebuild
similarity index 94%
rename from dev-python/httpx/httpx-0.23.3.ebuild
rename to dev-python/httpx/httpx-0.23.3-r1.ebuild
index 8bdd6f0fea7d..f89b00fc919f 100644
--- a/dev-python/httpx/httpx-0.23.3.ebuild
+++ b/dev-python/httpx/httpx-0.23.3-r1.ebuild
@@ -33,7 +33,7 @@ RDEPEND="
 	cli? (
 		=dev-python/click-8*[${PYTHON_USEDEP}]
 		=dev-python/pygments-2*[${PYTHON_USEDEP}]
-		<dev-python/rich-13[${PYTHON_USEDEP}]
+		dev-python/rich[${PYTHON_USEDEP}]
 	)
 "
 BDEPEND="
@@ -57,7 +57,7 @@ src_prepare() {
 	if ! use cli; then
 		sed -i -e '/^httpx =/d' pyproject.toml || die
 	fi
-	sed -i -e '/rfc3986/s:,<2::' pyproject.toml || die
+	sed -i -e '/rfc3986/s:,<2::' -e '/rich/s:,<13::' pyproject.toml || die
 	distutils-r1_src_prepare
 }