From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1343370-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 88801158086
	for <garchives@archives.gentoo.org>; Fri, 26 Nov 2021 01:40:33 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id A7C252BC071;
	Fri, 26 Nov 2021 01:40:32 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.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 8E51F2BC071
	for <gentoo-commits@lists.gentoo.org>; Fri, 26 Nov 2021 01:40:32 +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) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id AA63B342CBD
	for <gentoo-commits@lists.gentoo.org>; Fri, 26 Nov 2021 01:40:31 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E2031D4
	for <gentoo-commits@lists.gentoo.org>; Fri, 26 Nov 2021 01:40:30 +0000 (UTC)
From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org>
Message-ID: <1637890806.62e3ebbd66e52f88a6fb590344d61e0adb1a63b6.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/pandas/pandas-1.3.4.ebuild
X-VCS-Directories: dev-python/pandas/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: 62e3ebbd66e52f88a6fb590344d61e0adb1a63b6
X-VCS-Branch: master
Date: Fri, 26 Nov 2021 01:40:30 +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: e10e481e-d54f-491b-875f-d924e786ca36
X-Archives-Hash: 6242b917fd48488e8efa2dd463df5236

commit:     62e3ebbd66e52f88a6fb590344d61e0adb1a63b6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 26 01:40:06 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 26 01:40:06 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e3ebbd

dev-python/pandas: skip test broken by Python changes

Relies on a regex to match a certain string. Broken with Python 3.9.8+.

Bug: https://github.com/pandas-dev/pandas/issues/44420
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pandas/pandas-1.3.4.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-python/pandas/pandas-1.3.4.ebuild b/dev-python/pandas/pandas-1.3.4.ebuild
index 8907f6c99970..a4c1bb06f8ec 100644
--- a/dev-python/pandas/pandas-1.3.4.ebuild
+++ b/dev-python/pandas/pandas-1.3.4.ebuild
@@ -158,6 +158,10 @@ python_test() {
 		# TODO: some data path problems?
 		pandas/tests/io/test_fsspec.py::test_read_csv
 		pandas/tests/io/test_fsspec.py::test_markdown_options
+
+		# Broken by Python changes
+		# https://github.com/pandas-dev/pandas/issues/44420
+		pandas/tests/io/parser/test_quoting.py::test_bad_quote_char
 	)
 
 	local -x LC_ALL=C.UTF-8