From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1653025-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 795F61581C1
	for <garchives@archives.gentoo.org>; Sun, 14 Jul 2024 16:52:47 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id C2DF92BC02B;
	Sun, 14 Jul 2024 16:52:46 +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))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id A242A2BC02B
	for <gentoo-commits@lists.gentoo.org>; Sun, 14 Jul 2024 16:52:46 +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 E4F9A340CB1
	for <gentoo-commits@lists.gentoo.org>; Sun, 14 Jul 2024 16:52:45 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B66B1976
	for <gentoo-commits@lists.gentoo.org>; Sun, 14 Jul 2024 16:52:43 +0000 (UTC)
From: "Eli Schwartz" <eschwartz@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, "Eli Schwartz" <eschwartz@gentoo.org>
Message-ID: <1720975935.e6e9f6e947e193254bf7f99c6d3b83b1985450a2.eschwartz@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyproject-hooks/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/pyproject-hooks/pyproject-hooks-1.1.0.ebuild
X-VCS-Directories: dev-python/pyproject-hooks/
X-VCS-Committer: eschwartz
X-VCS-Committer-Name: Eli Schwartz
X-VCS-Revision: e6e9f6e947e193254bf7f99c6d3b83b1985450a2
X-VCS-Branch: master
Date: Sun, 14 Jul 2024 16:52:43 +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: b28dd03b-2927-4d36-83c2-532ed3ba5399
X-Archives-Hash: ceeb1e616c8c3a02088af3571f732d0a

commit:     e6e9f6e947e193254bf7f99c6d3b83b1985450a2
Author:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 14 16:50:00 2024 +0000
Commit:     Eli Schwartz <eschwartz <AT> gentoo <DOT> org>
CommitDate: Sun Jul 14 16:52:15 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6e9f6e9

dev-python/pyproject-hooks: deselect test that depends on changed setuptools impl

It assumes that setuptools adds a get_requires_for_build_wheel on
"wheel", which is no longer true since it internally includes wheel.

Bug: https://github.com/pypa/pyproject-hooks/issues/203
Closes: https://bugs.gentoo.org/936052
Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org>

 dev-python/pyproject-hooks/pyproject-hooks-1.1.0.ebuild | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/dev-python/pyproject-hooks/pyproject-hooks-1.1.0.ebuild b/dev-python/pyproject-hooks/pyproject-hooks-1.1.0.ebuild
index 8cf9f9f6f6fe..3e15fce08f50 100644
--- a/dev-python/pyproject-hooks/pyproject-hooks-1.1.0.ebuild
+++ b/dev-python/pyproject-hooks/pyproject-hooks-1.1.0.ebuild
@@ -33,3 +33,10 @@ BDEPEND="
 "
 
 distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+	# fails due to setuptools 70.1
+	# https://bugs.gentoo.org/936052
+	# https://github.com/pypa/pyproject-hooks/issues/203
+	tests/test_call_hooks.py::test_setup_py
+)