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 A7F991581D3 for ; Sat, 18 May 2024 06:23:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C0F4E2A8E; Sat, 18 May 2024 06:23:13 +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 6BB9CE2A8E for ; Sat, 18 May 2024 06:23:13 +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 83BEF33BEFF for ; Sat, 18 May 2024 06:23:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B00761ADF for ; Sat, 18 May 2024 06:23:09 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1716013336.e4a4f620fd0824025a36c5ecea9bd005352d9d0f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/openapi3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/openapi3/openapi3-1.8.2.ebuild X-VCS-Directories: dev-python/openapi3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e4a4f620fd0824025a36c5ecea9bd005352d9d0f X-VCS-Branch: master Date: Sat, 18 May 2024 06:23:09 +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: 6aedee52-1b8c-4cc6-9ef6-b07e78a0a7e3 X-Archives-Hash: a9adc6bd2b37c30e86321d7af8483f80 commit: e4a4f620fd0824025a36c5ecea9bd005352d9d0f Author: Michał Górny gentoo org> AuthorDate: Sat May 18 06:17:28 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 18 06:22:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a4f620 dev-python/openapi3: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> dev-python/openapi3/openapi3-1.8.2.ebuild | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/dev-python/openapi3/openapi3-1.8.2.ebuild b/dev-python/openapi3/openapi3-1.8.2.ebuild index 77cb4b50a85a..7a93d407de51 100644 --- a/dev-python/openapi3/openapi3-1.8.2.ebuild +++ b/dev-python/openapi3/openapi3-1.8.2.ebuild @@ -1,10 +1,10 @@ -# Copyright 2023 Gentoo Authors +# Copyright 2023-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 @@ -26,8 +26,7 @@ RDEPEND=" distutils_enable_tests pytest -python_test() { +EPYTEST_IGNORE=( # the fastapi test is broken for fastapi 0.94+ - rm -f tests/fastapi_test.py || die - epytest -} + tests/fastapi_test.py +)