From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1432760-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 9FBC0158094
	for <garchives@archives.gentoo.org>; Thu,  1 Sep 2022 19:42:11 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id BB22DE097C;
	Thu,  1 Sep 2022 19:42:10 +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 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 9EC44E097C
	for <gentoo-commits@lists.gentoo.org>; Thu,  1 Sep 2022 19:42:10 +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) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id B65A334113C
	for <gentoo-commits@lists.gentoo.org>; Thu,  1 Sep 2022 19:42:09 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 43B4B5B1
	for <gentoo-commits@lists.gentoo.org>; Thu,  1 Sep 2022 19:42:08 +0000 (UTC)
From: "Arthur Zamarin" <arthurzam@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, "Arthur Zamarin" <arthurzam@gentoo.org>
Message-ID: <1662061311.390f63c34b33e78872464b42cf18eff42aaf8595.arthurzam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-cinderclient/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild
X-VCS-Directories: dev-python/python-cinderclient/
X-VCS-Committer: arthurzam
X-VCS-Committer-Name: Arthur Zamarin
X-VCS-Revision: 390f63c34b33e78872464b42cf18eff42aaf8595
X-VCS-Branch: master
Date: Thu,  1 Sep 2022 19:42:08 +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: 9960e3e5-4741-4d87-a346-424d40ffcdea
X-Archives-Hash: abcc4864b5ba3ac9adf1ae0bbb4b04e1

commit:     390f63c34b33e78872464b42cf18eff42aaf8595
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  1 18:51:50 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep  1 19:41:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=390f63c3

dev-python/python-cinderclient: cap test dep prettytable to <3.4.0

Tests fail in simple text comparison because the prettytable syntax
changed in 3.4.0.

Closes: https://bugs.gentoo.org/867820
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild b/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild
index 69b8678ff2eb..f302f42eba8b 100644
--- a/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild
+++ b/dev-python/python-cinderclient/python-cinderclient-9.1.0.ebuild
@@ -26,6 +26,7 @@ RDEPEND="
 	>=dev-python/simplejson-3.5.1[${PYTHON_USEDEP}]
 	>=dev-python/stevedore-3.3.0[${PYTHON_USEDEP}]
 "
+# Tests fail with dev-python/prettytable-3.4.0
 BDEPEND="
 	dev-python/pbr[${PYTHON_USEDEP}]
 	test? (
@@ -34,6 +35,7 @@ BDEPEND="
 		dev-python/oslo-serialization[${PYTHON_USEDEP}]
 		dev-python/requests-mock[${PYTHON_USEDEP}]
 		dev-python/testtools[${PYTHON_USEDEP}]
+		<dev-python/prettytable-3.4.0[${PYTHON_USEDEP}]
 	)
 "