From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 165E0158043 for ; Sat, 13 Apr 2024 21:32:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58948E2A27; Sat, 13 Apr 2024 21:32:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 419E4E2A27 for ; Sat, 13 Apr 2024 21:32:02 +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 BCABF3433BE for ; Sat, 13 Apr 2024 21:32:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2924A16E6 for ; Sat, 13 Apr 2024 21:31:58 +0000 (UTC) From: "Julien Roy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julien Roy" Message-ID: <1713043855.aa1cac3e8febf93b11dbce017ab110feba634388.julien@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/graphql-core/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/graphql-core/graphql-core-3.2.3.ebuild X-VCS-Directories: dev-python/graphql-core/ X-VCS-Committer: julien X-VCS-Committer-Name: Julien Roy X-VCS-Revision: aa1cac3e8febf93b11dbce017ab110feba634388 X-VCS-Branch: dev Date: Sat, 13 Apr 2024 21:31:58 +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: eacd468e-8973-4b1b-9ccd-12465b209d5c X-Archives-Hash: c4877eea037c47ae72e3e4e64e6395f4 Message-ID: <20240413213158.g1n1h6QGLzVtHRKduOzoP0-4hpyRloXigm-EGvRDY3g@z> commit: aa1cac3e8febf93b11dbce017ab110feba634388 Author: Julien Roy jroy ca> AuthorDate: Sat Apr 13 21:30:40 2024 +0000 Commit: Julien Roy jroy ca> CommitDate: Sat Apr 13 21:30:55 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aa1cac3e dev-python/graphql-core: enable py3.12, fix tests Closes: https://bugs.gentoo.org/921814 Signed-off-by: Julien Roy jroy.ca> dev-python/graphql-core/graphql-core-3.2.3.ebuild | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/dev-python/graphql-core/graphql-core-3.2.3.ebuild b/dev-python/graphql-core/graphql-core-3.2.3.ebuild index a78e07eb1f..5aeb6e468e 100644 --- a/dev-python/graphql-core/graphql-core-3.2.3.ebuild +++ b/dev-python/graphql-core/graphql-core-3.2.3.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) DISTUTILS_USE_PEP517=poetry PYPI_NO_NORMALIZE=1 inherit distutils-r1 pypi @@ -44,10 +44,6 @@ src_prepare() { } python_test() { - if [[ ${EPYTHON} == "python3.11" ]]; then - local EPYTEST_DESELECT=( - tests/pyutils/test_is_awaitable.py::describe_is_awaitable::recognizes_an_old_style_coroutine - ) - fi + cd "${S}"/tests || die epytest }